| 130 | } |
| 131 | |
| 132 | txSize fxCacheUTF8Length(txMachine* the, txString string) |
| 133 | { |
| 134 | txStringInfo* info = fxCacheStringInfo(the, string); |
| 135 | if (info) |
| 136 | return info->utf8Length; |
| 137 | return (txSize)c_strlen(string); |
| 138 | } |
| 139 | |
| 140 | txSize fxCacheUTF8ToUnicodeOffset(txMachine* the, txString string, txSize offset) |
| 141 | { |
no test coverage detected