| 201 | extern const char *uvTypeName(UniValue::VType t); |
| 202 | |
| 203 | static inline bool jsonTokenIsValue(enum jtokentype jtt) |
| 204 | { |
| 205 | switch (jtt) { |
| 206 | case JTOK_KW_NULL: |
| 207 | case JTOK_KW_TRUE: |
| 208 | case JTOK_KW_FALSE: |
| 209 | case JTOK_NUMBER: |
| 210 | case JTOK_STRING: |
| 211 | return true; |
| 212 | |
| 213 | default: |
| 214 | return false; |
| 215 | } |
| 216 | |
| 217 | // not reached |
| 218 | } |
| 219 | |
| 220 | static inline bool json_isspace(int ch) |
| 221 | { |