Header file name and subject to change
$ make release#include <standardloop/json.h>
int main(void)
{
JSON *test = StringToJSON("[]");
PrintJSON(test);
FreeJSON(test);
return 0;
}$ export DYLD_LIBRARY_PATH="/usr/local/lib/standardloop"
$ gcc main.c -L/usr/local/lib/standardloop -lstandardloop-json
$ ./a.out
[]%If using just /usr/local/lib instead of /usr/local/lib/standardloop then the addition arg, -L, is not needed.