4 "summary": "serialize tool for c/c++ basic object types, ie. int ,char ,string,time_t...",
5 "description": "Some functions that overload operation '>>' and '<<' ,make it simple\tto write or read from 'FILE'.\t\t\n\nFILE *file = fopen(\"/test.txt\", \"w\");\nint i = 1;\nchar c = 'd';\nstring str = \"test_string\";\n\n// write those to the file\nfile << i << c << str;\n\t\t\t\t\t\n// read value from file\nfile >> i >> c >> str;",
6 "homepage": "https://github.com/liaogang/serialize.git",
9 "liaogang": "ynwlgh@icloud.com"
15 "git": "https://github.com/liaogang/serialize.git",
18 "source_files": "*.{h,cpp}",
19 "public_header_files": "*.h"