| 4434 | "f0f1f2f3f4f5f6f7f8f9fafbfcfdfeff"; |
| 4435 | |
| 4436 | static JSONCPP_STRING toHex16Bit(unsigned int x) { |
| 4437 | const unsigned int hi = (x >> 8) & 0xff; |
| 4438 | const unsigned int lo = x & 0xff; |
| 4439 | JSONCPP_STRING result(4, ' '); |
| 4440 | result[0] = hex2[2 * hi]; |
| 4441 | result[1] = hex2[2 * hi + 1]; |
| 4442 | result[2] = hex2[2 * lo]; |
| 4443 | result[3] = hex2[2 * lo + 1]; |
| 4444 | return result; |
| 4445 | } |
| 4446 | |
| 4447 | static JSONCPP_STRING valueToQuotedStringN(const char* value, unsigned length) { |
| 4448 | if (value == NULL) |
no outgoing calls
no test coverage detected