| 919 | } |
| 920 | |
| 921 | txString fxSkipSpaces(txString string) |
| 922 | { |
| 923 | txString p = string; |
| 924 | txString q = p; |
| 925 | txInteger c; |
| 926 | while (((q = fxUTF8Decode(q, &c))) && (c != C_EOF)) { |
| 927 | if (fxIsSpace(c)) |
| 928 | p = q; |
| 929 | else |
| 930 | break; |
| 931 | } |
| 932 | return p; |
| 933 | } |
| 934 | |
| 935 | txString fxStringifyHexEscape(txString string, txInteger character) |
| 936 | { |
no test coverage detected