├── .gitignore ├── .gitmodules ├── CoreJSON.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── CoreJSON ├── CoreJSON-Info.plist ├── CoreJSON-Prefix.pch ├── CoreJSON.c ├── CoreJSON.h └── en.lproj │ └── InfoPlist.strings ├── CoreJSONTests ├── CoreJSONTests-Info.plist ├── CoreJSONTests-Prefix.pch ├── CoreJSONTests.h ├── CoreJSONTests.m ├── en.lproj │ └── InfoPlist.strings └── tests │ └── sample.json ├── Readme.md ├── YAJL.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── YAJL ├── YAJL-Info.plist ├── YAJL-Prefix.pch ├── en.lproj └── InfoPlist.strings └── include └── yajl ├── yajl_common.h ├── yajl_gen.h ├── yajl_parse.h ├── yajl_tree.h └── yajl_version.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/.gitmodules -------------------------------------------------------------------------------- /CoreJSON.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSON.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreJSON.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSON.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoreJSON/CoreJSON-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSON/CoreJSON-Info.plist -------------------------------------------------------------------------------- /CoreJSON/CoreJSON-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSON/CoreJSON-Prefix.pch -------------------------------------------------------------------------------- /CoreJSON/CoreJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSON/CoreJSON.c -------------------------------------------------------------------------------- /CoreJSON/CoreJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSON/CoreJSON.h -------------------------------------------------------------------------------- /CoreJSON/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CoreJSONTests/CoreJSONTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSONTests/CoreJSONTests-Info.plist -------------------------------------------------------------------------------- /CoreJSONTests/CoreJSONTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSONTests/CoreJSONTests-Prefix.pch -------------------------------------------------------------------------------- /CoreJSONTests/CoreJSONTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSONTests/CoreJSONTests.h -------------------------------------------------------------------------------- /CoreJSONTests/CoreJSONTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSONTests/CoreJSONTests.m -------------------------------------------------------------------------------- /CoreJSONTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CoreJSONTests/tests/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/CoreJSONTests/tests/sample.json -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/Readme.md -------------------------------------------------------------------------------- /YAJL.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YAJL.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YAJL/YAJL-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL/YAJL-Info.plist -------------------------------------------------------------------------------- /YAJL/YAJL-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL/YAJL-Prefix.pch -------------------------------------------------------------------------------- /YAJL/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /YAJL/include/yajl/yajl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL/include/yajl/yajl_common.h -------------------------------------------------------------------------------- /YAJL/include/yajl/yajl_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL/include/yajl/yajl_gen.h -------------------------------------------------------------------------------- /YAJL/include/yajl/yajl_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL/include/yajl/yajl_parse.h -------------------------------------------------------------------------------- /YAJL/include/yajl/yajl_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL/include/yajl/yajl_tree.h -------------------------------------------------------------------------------- /YAJL/include/yajl/yajl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirek/CoreJSON/HEAD/YAJL/include/yajl/yajl_version.h --------------------------------------------------------------------------------