├── LICENSE ├── Makefile ├── README ├── SConstruct ├── benejson ├── SConscript ├── benejson.c ├── benejson.h ├── pull.cpp └── pull.hh ├── data ├── arr.json ├── colon.json ├── content.json ├── depth.json ├── doublecolon.json ├── false.json ├── keys.json ├── keytest.json ├── spam.js └── test.json ├── javascript ├── benejson.js ├── cdb-view.js ├── config.json └── nodetest.js └── tests ├── SConscript ├── all_negatives.cpp ├── json_format.cpp ├── jsonbuff.c ├── jsongrab.cpp ├── jsonoise.c ├── jsontest.c ├── jsontool.c ├── keytest.cpp ├── posix.cpp ├── posix.hh ├── pulltest.cpp ├── spam.cpp ├── stepbystep.c ├── strtest.c └── verify.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/README -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/SConstruct -------------------------------------------------------------------------------- /benejson/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/benejson/SConscript -------------------------------------------------------------------------------- /benejson/benejson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/benejson/benejson.c -------------------------------------------------------------------------------- /benejson/benejson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/benejson/benejson.h -------------------------------------------------------------------------------- /benejson/pull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/benejson/pull.cpp -------------------------------------------------------------------------------- /benejson/pull.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/benejson/pull.hh -------------------------------------------------------------------------------- /data/arr.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /data/colon.json: -------------------------------------------------------------------------------- 1 | { 2 | "dasfas"1} 3 | -------------------------------------------------------------------------------- /data/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/data/content.json -------------------------------------------------------------------------------- /data/depth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/data/depth.json -------------------------------------------------------------------------------- /data/doublecolon.json: -------------------------------------------------------------------------------- 1 | { 2 | "fsdf"::"x"} 3 | -------------------------------------------------------------------------------- /data/false.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /data/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/data/keys.json -------------------------------------------------------------------------------- /data/keytest.json: -------------------------------------------------------------------------------- 1 | { 2 | "abc":1,"def":2,"ghi":3,"xyz":4, "qqq":6 } 3 | -------------------------------------------------------------------------------- /data/spam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/data/spam.js -------------------------------------------------------------------------------- /data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/data/test.json -------------------------------------------------------------------------------- /javascript/benejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/javascript/benejson.js -------------------------------------------------------------------------------- /javascript/cdb-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/javascript/cdb-view.js -------------------------------------------------------------------------------- /javascript/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/javascript/config.json -------------------------------------------------------------------------------- /javascript/nodetest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/javascript/nodetest.js -------------------------------------------------------------------------------- /tests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/SConscript -------------------------------------------------------------------------------- /tests/all_negatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/all_negatives.cpp -------------------------------------------------------------------------------- /tests/json_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/json_format.cpp -------------------------------------------------------------------------------- /tests/jsonbuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/jsonbuff.c -------------------------------------------------------------------------------- /tests/jsongrab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/jsongrab.cpp -------------------------------------------------------------------------------- /tests/jsonoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/jsonoise.c -------------------------------------------------------------------------------- /tests/jsontest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/jsontest.c -------------------------------------------------------------------------------- /tests/jsontool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/jsontool.c -------------------------------------------------------------------------------- /tests/keytest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/keytest.cpp -------------------------------------------------------------------------------- /tests/posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/posix.cpp -------------------------------------------------------------------------------- /tests/posix.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/posix.hh -------------------------------------------------------------------------------- /tests/pulltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/pulltest.cpp -------------------------------------------------------------------------------- /tests/spam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/spam.cpp -------------------------------------------------------------------------------- /tests/stepbystep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/stepbystep.c -------------------------------------------------------------------------------- /tests/strtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/strtest.c -------------------------------------------------------------------------------- /tests/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codehero/benejson/HEAD/tests/verify.c --------------------------------------------------------------------------------