| 96 | void fx_Uint8ClampedArray(txMachine* the) { fx_TypedArray(the); } |
| 97 | |
| 98 | txString fxBasePrefix(txLinker* linker, txString path) |
| 99 | { |
| 100 | if ((path[0] == '~') && (path[1] == '.')) { |
| 101 | txString slash = c_strchr(path + 2, mxSeparator); |
| 102 | if (slash) { |
| 103 | *slash = ':'; |
| 104 | path += 2; |
| 105 | } |
| 106 | } |
| 107 | return path; |
| 108 | } |
| 109 | |
| 110 | void fxBaseResource(txLinker* linker, txLinkerResource* resource, txString base, txInteger baseLength) |
| 111 | { |
no outgoing calls
no test coverage detected