| 1343 | |
| 1344 | |
| 1345 | void fxPrintTable(txMachine* the, FILE* file, txSize modulo, txSlot** table) |
| 1346 | { |
| 1347 | while (modulo > 1) { |
| 1348 | fprintf(file, "\t"); |
| 1349 | fxPrintAddress(the, file, *table); |
| 1350 | fprintf(file, ",\n"); |
| 1351 | modulo--; |
| 1352 | table++; |
| 1353 | } |
| 1354 | fprintf(file, "\t"); |
| 1355 | fxPrintAddress(the, file, *table); |
| 1356 | fprintf(file, "\n"); |
| 1357 | } |
| 1358 | |
| 1359 | void fxSetHostFunctionProperty(txMachine* the, txSlot* property, txCallback call, txInteger length, txID id) |
| 1360 | { |
no test coverage detected