| 218 | } |
| 219 | |
| 220 | static inline bool json_isspace(int ch) |
| 221 | { |
| 222 | switch (ch) { |
| 223 | case 0x20: |
| 224 | case 0x09: |
| 225 | case 0x0a: |
| 226 | case 0x0d: |
| 227 | return true; |
| 228 | |
| 229 | default: |
| 230 | return false; |
| 231 | } |
| 232 | |
| 233 | // not reached |
| 234 | } |
| 235 | |
| 236 | extern const UniValue NullUniValue; |
| 237 |
no outgoing calls
no test coverage detected