| 843 | } |
| 844 | |
| 845 | void fx_parseURLCopyPath(txMachine* the, txSlot* src, txSlot* dst) |
| 846 | { |
| 847 | txIndex length, i; |
| 848 | |
| 849 | mxPushSlot(src); |
| 850 | mxGetID(mxID(_length)); |
| 851 | length = (txIndex)fxToLength(the, the->stack); |
| 852 | mxPop(); |
| 853 | i = 0; |
| 854 | while (i < length) { |
| 855 | mxPushSlot(src); |
| 856 | mxGetIndex(i); |
| 857 | mxPushSlot(dst); |
| 858 | mxSetIndex(i); |
| 859 | mxPop(); |
| 860 | i++; |
| 861 | } |
| 862 | } |
| 863 | |
| 864 | txInteger fx_parseURLDecode(txMachine* the, txStringStream* stream) |
| 865 | { |
no test coverage detected