| 396 | static const char gxHexaDigits[] = "0123456789ABCDEF"; |
| 397 | |
| 398 | txString fxBinHex(txString string, void* data, size_t size) |
| 399 | { |
| 400 | txU1* src = data; |
| 401 | while(size) { |
| 402 | txU1 byte = *src++; |
| 403 | *string++ = gxHexaDigits[byte >> 4]; |
| 404 | *string++ = gxHexaDigits[byte & 0x0F]; |
| 405 | size--; |
| 406 | } |
| 407 | return string; |
| 408 | } |
| 409 | |
| 410 | void PiuDebugBehavior_compile(xsMachine* the) |
| 411 | { |
no outgoing calls
no test coverage detected