├── CMakeLists.txt ├── LICENSE ├── Makefile ├── NEWS ├── README ├── THANKS ├── TODO ├── dist.cmake ├── dist.info ├── lua-cjson-1.0.3-1.rockspec ├── lua-cjson.spec ├── lua_cjson.c ├── performance.txt ├── rfc4627.txt ├── strbuf.c ├── strbuf.h └── tests ├── README ├── bench.lua ├── common.lua ├── decode.lua ├── encode.lua ├── example1.json ├── example2.json ├── example3.json ├── example4.json ├── example5.json ├── genutf8.pl ├── numbers.json ├── octets-escaped.dat ├── rfc-example1.json ├── rfc-example2.json ├── test.lua └── types.json /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/README -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/TODO -------------------------------------------------------------------------------- /dist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/dist.cmake -------------------------------------------------------------------------------- /dist.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/dist.info -------------------------------------------------------------------------------- /lua-cjson-1.0.3-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/lua-cjson-1.0.3-1.rockspec -------------------------------------------------------------------------------- /lua-cjson.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/lua-cjson.spec -------------------------------------------------------------------------------- /lua_cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/lua_cjson.c -------------------------------------------------------------------------------- /performance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/performance.txt -------------------------------------------------------------------------------- /rfc4627.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/rfc4627.txt -------------------------------------------------------------------------------- /strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/strbuf.c -------------------------------------------------------------------------------- /strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/strbuf.h -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/README -------------------------------------------------------------------------------- /tests/bench.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/bench.lua -------------------------------------------------------------------------------- /tests/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/common.lua -------------------------------------------------------------------------------- /tests/decode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/decode.lua -------------------------------------------------------------------------------- /tests/encode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/encode.lua -------------------------------------------------------------------------------- /tests/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/example1.json -------------------------------------------------------------------------------- /tests/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/example2.json -------------------------------------------------------------------------------- /tests/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/example3.json -------------------------------------------------------------------------------- /tests/example4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/example4.json -------------------------------------------------------------------------------- /tests/example5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/example5.json -------------------------------------------------------------------------------- /tests/genutf8.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/genutf8.pl -------------------------------------------------------------------------------- /tests/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/numbers.json -------------------------------------------------------------------------------- /tests/octets-escaped.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/octets-escaped.dat -------------------------------------------------------------------------------- /tests/rfc-example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/rfc-example1.json -------------------------------------------------------------------------------- /tests/rfc-example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/rfc-example2.json -------------------------------------------------------------------------------- /tests/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efelix/lua-cjson/HEAD/tests/test.lua -------------------------------------------------------------------------------- /tests/types.json: -------------------------------------------------------------------------------- 1 | { "array": [ 10, true, null ] } 2 | --------------------------------------------------------------------------------