1 parent b85f161 commit 1aa2e8fCopy full SHA for 1aa2e8f
1 file changed
README.md
@@ -89,7 +89,7 @@ jsmn_parser p;
89
jsmntok_t t[128]; /* We expect no more than 128 JSON tokens */
90
91
jsmn_init(&p);
92
-r = jsmn_parse(&p, s, strlen(s), t, 128);
+r = jsmn_parse(&p, s, strlen(s), t, 128); // "s" is the char array holding the json content
93
```
94
95
Since jsmn is a single-header, header-only library, for more complex use cases
0 commit comments