MCPcopy Create free account
hub / github.com/ElementsProject/elements / json_isspace

Function json_isspace

src/univalue/include/univalue.h:220–234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220static 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
236extern const UniValue NullUniValue;
237

Callers 2

ParsePrechecksFunction · 0.85
getJsonTokenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected