#ifndef JSON_H
#define JSON_H

#include <stdio.h>

void json_escape_print(FILE *out, const char *s);
void json_error_response(const char *status, const char *message);

#endif
