├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── include ├── R_Dictionary.h ├── R_Events.h ├── R_JumpTable.h ├── R_KeyValuePair.h ├── R_List.h ├── R_MutableData.h ├── R_MutableString.h ├── R_OS.h ├── R_Type.h └── R_Type_Builtins.h ├── makefile ├── src ├── R_Dictionary.c ├── R_Dictionary_Json.c ├── R_Events.c ├── R_JumpTable.c ├── R_KeyValuePair.c ├── R_List.c ├── R_MutableData.c ├── R_MutableData_Extensions.c ├── R_MutableString.c ├── R_MutableString_Extensions.c ├── R_OS.c ├── R_Type.c └── R_Type_Builtins.c └── test ├── R_Builtins_test.c ├── R_Data_test.c ├── R_Dictionary_json_speed_test.c ├── R_Dictionary_large_json.data ├── R_Dictionary_test.c ├── R_Events_test.c ├── R_JumpTable_test.c ├── R_KeyValuePair_test.c ├── R_List_Test.c ├── R_MutableString_test.c ├── R_OS_test.c ├── R_Type_test.c ├── makefile └── valgrind-osx.suppressions /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/README.md -------------------------------------------------------------------------------- /include/R_Dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_Dictionary.h -------------------------------------------------------------------------------- /include/R_Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_Events.h -------------------------------------------------------------------------------- /include/R_JumpTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_JumpTable.h -------------------------------------------------------------------------------- /include/R_KeyValuePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_KeyValuePair.h -------------------------------------------------------------------------------- /include/R_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_List.h -------------------------------------------------------------------------------- /include/R_MutableData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_MutableData.h -------------------------------------------------------------------------------- /include/R_MutableString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_MutableString.h -------------------------------------------------------------------------------- /include/R_OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_OS.h -------------------------------------------------------------------------------- /include/R_Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_Type.h -------------------------------------------------------------------------------- /include/R_Type_Builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/include/R_Type_Builtins.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/makefile -------------------------------------------------------------------------------- /src/R_Dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_Dictionary.c -------------------------------------------------------------------------------- /src/R_Dictionary_Json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_Dictionary_Json.c -------------------------------------------------------------------------------- /src/R_Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_Events.c -------------------------------------------------------------------------------- /src/R_JumpTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_JumpTable.c -------------------------------------------------------------------------------- /src/R_KeyValuePair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_KeyValuePair.c -------------------------------------------------------------------------------- /src/R_List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_List.c -------------------------------------------------------------------------------- /src/R_MutableData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_MutableData.c -------------------------------------------------------------------------------- /src/R_MutableData_Extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_MutableData_Extensions.c -------------------------------------------------------------------------------- /src/R_MutableString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_MutableString.c -------------------------------------------------------------------------------- /src/R_MutableString_Extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_MutableString_Extensions.c -------------------------------------------------------------------------------- /src/R_OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_OS.c -------------------------------------------------------------------------------- /src/R_Type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_Type.c -------------------------------------------------------------------------------- /src/R_Type_Builtins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/src/R_Type_Builtins.c -------------------------------------------------------------------------------- /test/R_Builtins_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_Builtins_test.c -------------------------------------------------------------------------------- /test/R_Data_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_Data_test.c -------------------------------------------------------------------------------- /test/R_Dictionary_json_speed_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_Dictionary_json_speed_test.c -------------------------------------------------------------------------------- /test/R_Dictionary_large_json.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_Dictionary_large_json.data -------------------------------------------------------------------------------- /test/R_Dictionary_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_Dictionary_test.c -------------------------------------------------------------------------------- /test/R_Events_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_Events_test.c -------------------------------------------------------------------------------- /test/R_JumpTable_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_JumpTable_test.c -------------------------------------------------------------------------------- /test/R_KeyValuePair_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_KeyValuePair_test.c -------------------------------------------------------------------------------- /test/R_List_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_List_Test.c -------------------------------------------------------------------------------- /test/R_MutableString_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_MutableString_test.c -------------------------------------------------------------------------------- /test/R_OS_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_OS_test.c -------------------------------------------------------------------------------- /test/R_Type_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/R_Type_test.c -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/makefile -------------------------------------------------------------------------------- /test/valgrind-osx.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanbalsdon/libr/HEAD/test/valgrind-osx.suppressions --------------------------------------------------------------------------------