| 1448 | } |
| 1449 | |
| 1450 | txInteger fx_parseURLSpecialScheme(txMachine* the, txString scheme) |
| 1451 | { |
| 1452 | txInteger i; |
| 1453 | for (i = 0; i < mx_parseURLSpecialSchemeCount; i++) { |
| 1454 | if (!c_strcmp(scheme, gx_parseURLSpecialSchemeNames[i])) |
| 1455 | return i; |
| 1456 | } |
| 1457 | return -1; |
| 1458 | } |
| 1459 | |
| 1460 | void fx_parseURLSetPart(txMachine* the, txSlot* target, txID id, txIndex index, txStringStream* dst) |
| 1461 | { |
no outgoing calls
no test coverage detected