| 100 | } |
| 101 | |
| 102 | void ckpt_json_is_bool(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 103 | { |
| 104 | ReturnValue->Val->Integer = tree(ScriptArgs(Parser, Param, NumArgs, "json_is_bool"), 0)->is_boolean() ? 1 : 0; |
| 105 | } |
| 106 | |
| 107 | void ckpt_json_is_string(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 108 | { |
nothing calls this directly
no test coverage detected