Download the zip file from the latest release and add it to the Visual Studio link arguments OR Build from source
git clone https://github.com/AaravMalani/libjson/
cd libjson
cmake -S . -B build
cd build
cmake --build .
cd ..
rem The .dll and .lib file is in the build directory
rem The include files are in the include directory
Download the .deb
file and run
sudo dpkg -i <file>
OR Build from source
Download the .rpm
file and
git clone https://github.com/AaravMalani/libjson/
cd libjson
cmake -S . -B build
cd build
sudo make install
cd ..
#include <json.h>
int main(int argc, char** argv){
JSONElement* element = parseJSON("{\"a\":\"b\"}", NULL); // The second argument is for inner recursed calls and can therefore be NULL
printf("%s\n", (char*) getElement(element, "a")->data); // Get inner element (char* for objects and uint64_t for arrays)
freeJSONElement(element);
element = parseJSON("{\"a\":[1.0, -1.4]}", NULL);
printf("%s\n", (char*) getElements(element, 2, "a", 0)->data); // C equivalent of element["a"][0] (first argument is root element, second argument is number of indices and third argument onwards are the indices)
freeJSONElement(element);
return 0;
}
For all the different types, look at include/json.h
A documentation of the library can be found here