| 862 | } |
| 863 | |
| 864 | txInteger fx_parseURLDecode(txMachine* the, txStringStream* stream) |
| 865 | { |
| 866 | txInteger result; |
| 867 | txString string = stream->slot->value.string + stream->offset; |
| 868 | string = mxStringByteDecode(string, &result); |
| 869 | if ((0xD000 <= result) && (result <= 0xDFFF)) |
| 870 | result = 0xFFFD; |
| 871 | stream->offset = string - stream->slot->value.string; |
| 872 | return result; |
| 873 | } |
| 874 | |
| 875 | void fx_parseURLEncode(txMachine* the, txInteger c, txStringStream* dst) |
| 876 | { |
no outgoing calls
no test coverage detected