| 197 | } |
| 198 | |
| 199 | txSize fxCacheUnicodeLength(txMachine* the, txString string) |
| 200 | { |
| 201 | txStringInfo* info = fxCacheStringInfo(the, string); |
| 202 | if (info) |
| 203 | return info->unicodeLength; |
| 204 | return fxUnicodeLength(string, C_NULL); |
| 205 | } |
| 206 | |
| 207 | txSize fxCacheUnicodeToUTF8Offset(txMachine* the, txString string, txSize offset) |
| 208 | { |
no test coverage detected