Explorar el Código

Added a default MAX_JSON_DEPTH inside xs_json.h.

default hace 1 mes
padre
commit
4ccb52de74
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      xs_json.h

+ 4 - 0
xs_json.h

@@ -4,6 +4,10 @@
 
 #define _XS_JSON_H
 
+#ifndef MAX_JSON_DEPTH
+#define MAX_JSON_DEPTH 32
+#endif
+
 int xs_json_dump(const xs_val *data, int indent, FILE *f);
 xs_str *xs_json_dumps(const xs_val *data, int indent);