A Playground-specific Binary JSON converter to normal JSON + beautifier.
There's used to be a same program but the source code is no longer found (actually I lost the source code), so this program re-creates the functionality.
cl /Ferjson.exe /O2 program.cpp JSonParser\*.c
clang++ -O2 -o rjson program.cpp -xc JSonParser/*.c
Add .exe
suffix for -o
on Windows.
No instruction for GCC because it doesn't support single-command compilation of mixed C and C++ files. Blame GNU!
program.cpp
- MIT License.- yajl - ISC License, modified by KLab.