Serge Zaitsev
Serge Zaitsev
The suggested code looks unnecessary complex. I would suggest to remove the loop to collect varargs into values, as well as section 5 of the code. The original code was...
@paulle Thanks for the feedback! The best we can implement at the moment is using am/pm switch and optionally displaying hours in 24h format, so you could easily see whether...
Sorry, but it looks really excessive. I don't think there will ever be any java or python code inside the jsmn folder, or rpm/deb etc. Perhaps something more traditional could...
Thanks! I see that jsmn was running in a non-strict mode during the tests. I wonder if adding `#define JSMN_STRICT` changes things... It should then report errors on unquoted keys,...
I don't think unsigned int is an option, because we need a special value for "undefined", which is now `-1`. I wonder if there is any practical platform where this...
From the debugger output I can tell that the number of tokens was estimated correctly, but only the root token was filled in normally (e.g. Object type, 8 child nodes)....
I have exactly the same problem. I used the jsmn code on an ARM7 and it works fine when I don't use JSMN_PARENT_LINKS. On the first try with a relatively...
I made the code of jsmn MISRA compliant which was a tremendous job because there were tons of violations. Surprisingly enough, the problem with the JSMN_PARENT_LINKS was gone after this....
Might be related with #43 Can anyone confirm that the recent version (which fixes #43) still has this issue?
@aantonyan "simple" example is built from simple.c and libjsmn.a. Adding JSMN_PARENT_LINKS define to jsmn.h inside simple.c affects the data structures inside simple.c, but if you've built libjsmn.a without that definition...