We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd6f619 commit 58d4b56Copy full SHA for 58d4b56
.gitignore
@@ -50,3 +50,5 @@ modules.order
50
Module.symvers
51
Mkfile.old
52
dkms.conf
53
+
54
+build/
json_parser.h
@@ -22,9 +22,17 @@ extern "C" {
22
#include <ctype.h>
23
#include <math.h>
24
25
+#ifndef JSON_DEFAULT_MAX_TOKENS
26
#define JSON_DEFAULT_MAX_TOKENS 128
27
+#endif
28
29
+#ifndef JSON_DEFAULT_MAX_DEPTH
30
#define JSON_DEFAULT_MAX_DEPTH 32
31
32
33
+#ifndef JSON_DEFAULT_MAX_STRING
34
#define JSON_DEFAULT_MAX_STRING 256
35
36
37
typedef enum {
38
JSON_ERROR_NONE = 0,
0 commit comments