summaryrefslogtreecommitdiffstats
path: root/jv_parse.c
AgeCommit message (Collapse)Author
2013-05-05Make a few constant globals actually const.Stephen Dolan
This means the .data and .bss sections are empty, a good thing in a shared library (see #98).
2012-12-27JSON parsing error messages now specify a location of the error.Stephen Dolan
Should help with #53.
2012-12-18Add wrappers for malloc/realloc/free. See #43.Stephen Dolan
2012-12-02Ignore a UTF-8 BOM if one appears at the start of a JSON document.Stephen Dolan
Closes #45.
2012-09-18Fix a parsing bug for \uXXXX escapes (some invalid escapes were accepted).Stephen Dolan
Found by gcc -O -Wall identifying a use of uninitialised variables.
2012-09-18Move everything around - delete old Haskell code, clean up build.Stephen Dolan