// (C) 2017 <>< Joshua Allen, Under MIT/x11 License. #ifndef JSON_HELPERS_H #define JSON_HELPERS_H #include void json_write_float_array(FILE* f, const char* tag, float* v, uint8_t count); void json_write_double_array(FILE* f, const char* tag, double* v, uint8_t count); void json_write_uint32(FILE* f, const char* tag, uint32_t v); void json_write_float(FILE* f, const char* tag, float v); void json_write_str(FILE* f, const char* tag, const char* v); #endif