| 264 | } |
| 265 | |
| 266 | void json_print_string(const char* str, int indent) |
| 267 | { |
| 268 | for (int i = 0; i < indent; i++) { |
| 269 | putchar(' '); |
| 270 | } |
| 271 | printf("\"%s\"", str); |
| 272 | } |
| 273 | |
| 274 | void json_printint_key_value(const char* key, int value, int indent) |
| 275 | { |