| 3315 | |
| 3316 | #ifdef mxDebug |
| 3317 | void fxEchoUnsigned(txMachine* the, txUnsigned value, txInteger radix) |
| 3318 | { |
| 3319 | char buffer[256]; |
| 3320 | char *p = &buffer[sizeof(buffer) - 1]; |
| 3321 | *p-- = 0; |
| 3322 | do { |
| 3323 | *p-- = c_read8(gxHexaDigits + (value % radix)); |
| 3324 | value /= radix; |
| 3325 | } while (value); |
| 3326 | fxEcho(the, p + 1); |
| 3327 | } |
| 3328 | #endif |
| 3329 | |
| 3330 | txID fxFrameToProfilerID(txMachine* the, txSlot* frame) |
no test coverage detected