Skip to content

Keene-Chen/data_serialization

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data serialization in C

本项目用于测试常用的在C语言中的数据序列化库,都是最简单的示例文件,详细使用方法以及API请查看第三方库的官方文档。

目录结构

data_serialization
 ├── bin                // 二进制文件
 ├── cmake              // CMake自定义模块
 ├── cmake-build        // CMake 构建目录
 ├── CMakeLists.txt     // CMake 顶层文件
 ├── clean.sh
 ├── README.md
 ├── res                // 测试数据
 ├── src                // 测试源码目录
 │   ├── test_cJSON
 │   ├── test_easylogger
 │   ├── test_inih
 │   ├── test_libxml2
 │   ├── test_libyaml
 │   ├── test_protobuf-c
 │   ├── test_rxi_ini
 │   ├── test_rxi_log
 │   ├── test_yyjson
 │   └── CMakeLists.txt // CMake 子目录文件
 └── third_party        // 第三方库源码目录
     ├── cJSON
     ├── easylogger
     ├── inih
     ├── rxi_ini
     ├── rxi_log
     ├── yyjson
     └── CMakeLists.txt // CMake 子目录文件

第三方库

JSON

INI

Log

YAML

XML

Protocol Buffers