| 90 | } |
| 91 | |
| 92 | void ckpt_json_is_valid(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 93 | { |
| 94 | ReturnValue->Val->Integer = tree(ScriptArgs(Parser, Param, NumArgs, "json_is_valid"), 0)->is_discarded() ? 0 : 1; |
| 95 | } |
| 96 | |
| 97 | void ckpt_json_is_int(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 98 | { |
nothing calls this directly
no test coverage detected