| 4384 | "f0f1f2f3f4f5f6f7f8f9fafbfcfdfeff"; |
| 4385 | |
| 4386 | static JSONCPP_STRING toHex16Bit(unsigned int x) { |
| 4387 | const unsigned int hi = (x >> 8) & 0xff; |
| 4388 | const unsigned int lo = x & 0xff; |
| 4389 | JSONCPP_STRING result(4, ' '); |
| 4390 | result[0] = hex2[2 * hi]; |
| 4391 | result[1] = hex2[2 * hi + 1]; |
| 4392 | result[2] = hex2[2 * lo]; |
| 4393 | result[3] = hex2[2 * lo + 1]; |
| 4394 | return result; |
| 4395 | } |
| 4396 | |
| 4397 | static JSONCPP_STRING valueToQuotedStringN(const char* value, unsigned length) { |
| 4398 | if (value == NULL) |
no outgoing calls
no test coverage detected