aboutsummaryrefslogtreecommitdiff
path: root/redist/json_helpers.h
diff options
context:
space:
mode:
authormwturvey <michael.w.turvey@intel.com>2017-03-08 10:47:27 -0700
committermwturvey <michael.w.turvey@intel.com>2017-03-08 10:47:27 -0700
commita5430b24d41d1bb795db14036b35c39c7a9accd4 (patch)
tree90120d0a3d529aca81d77fe825229f8a6d641bc6 /redist/json_helpers.h
parent321749a4b8e3e8b3f4b03863200fbf86e36a0bbe (diff)
parentc65498054c77192b2a12fdb5ef44439a14110292 (diff)
downloadlibsurvive-a5430b24d41d1bb795db14036b35c39c7a9accd4.tar.gz
libsurvive-a5430b24d41d1bb795db14036b35c39c7a9accd4.tar.bz2
Merge branch 'master' of https://github.com/cnlohr/libsurvive
Diffstat (limited to 'redist/json_helpers.h')
-rw-r--r--redist/json_helpers.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/redist/json_helpers.h b/redist/json_helpers.h
new file mode 100644
index 0000000..1670058
--- /dev/null
+++ b/redist/json_helpers.h
@@ -0,0 +1,20 @@
+// (C) 2017 <>< Joshua Allen, Under MIT/x11 License.
+
+#ifndef JSON_HELPERS_H
+#define JSON_HELPERS_H
+
+#include <stdint.h>
+
+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);
+
+void json_load_file(const char* path);
+extern void (*json_begin_object)(char* tag);
+extern void (*json_end_object)();
+extern void (*json_tag_value)(char* tag, char** values, uint16_t count);
+
+
+#endif \ No newline at end of file