├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── fips ├── fips.cmd ├── fips.yml ├── sample.c └── xjson.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stbachmann/xjson/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stbachmann/xjson/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stbachmann/xjson/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stbachmann/xjson/HEAD/README.md -------------------------------------------------------------------------------- /fips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stbachmann/xjson/HEAD/fips -------------------------------------------------------------------------------- /fips.cmd: -------------------------------------------------------------------------------- 1 | @python fips %* 2 | 3 | -------------------------------------------------------------------------------- /fips.yml: -------------------------------------------------------------------------------- 1 | # 2 | # xjson 3 | # 4 | --- 5 | exports: 6 | header-dirs: [ "." ] 7 | 8 | -------------------------------------------------------------------------------- /sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stbachmann/xjson/HEAD/sample.c -------------------------------------------------------------------------------- /xjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stbachmann/xjson/HEAD/xjson.h --------------------------------------------------------------------------------