json.h
json.h is a header-only zero-dependency JSON library for C/C++ and Lua.
#include "json.h"

int main() {
  const char * input = "{'hello' : 'world'}";
  struct JSON json = parse_json(input);
  return 0;
}