struct2json icon indicating copy to clipboard operation
struct2json copied to clipboard

A fast convert library between the JSON and C structure. Implement structure serialization and deserialization for C. | C 结构体与 JSON 快速互转库,快速实现 C 结构体的序列化及反序列化

Results 12 struct2json issues
Sort by recently updated
recently updated
newest added

你好, 代码运行可靠吗?可以运行在项目中吗

强制指定库选用本地库还是会一样的,解决此问题的原因应该是新版本的gcc编译器的错误检查更严格了 增加编译器-Wno- error选项能解决问题,最好还是采用老版本编译器 gcc ../cJSON/cJSON.c ../struct2json/src/*.c ./*.c -I ../cJSON/ -I ../struct2json/inc/ -lm -DDEBUGS2J -g -o tests2j In file included from ./my_struct_2_json.c:2: ./my_struct_2_json.inc:30:40: warning: '/*' within block comment [-Wcomment] 30 |...