| 17 | static const size_t MAX_JSON_DEPTH = 512; |
| 18 | |
| 19 | static bool json_isdigit(int ch) |
| 20 | { |
| 21 | return ((ch >= '0') && (ch <= '9')); |
| 22 | } |
| 23 | |
| 24 | // convert hexadecimal string to unsigned integer |
| 25 | static const char *hatoui(const char *first, const char *last, |
no outgoing calls
no test coverage detected