|
| | gencode.h |
| | generate json manipulate codes.
|
| |
| | gencode_cbor.c |
| | Generate CBOR pack/unpack C code from parsed schema.
|
| |
| | gencode_cpp.c |
| | Generate a C++ wrapper header (.gen.hpp) providing RAII classes around the generated C structs, with typed accessors and marshal/unmarshal member functions.
|
| |
| | gencode_go.c |
| | Generate a Go source file (.go) with native encoding/json-compatible structs and type-safe enums from the parsed schema. The output is a single self-contained Go file using only the standard library.
|
| |
| | gencode_msgpack.c |
| | Generate MessagePack pack/unpack C code from parsed schema.
|
| |
| | gencode_rust.c |
| | Generate a Rust module (.rs) with native serde-compatible structs and enums from the parsed schema. The output is a single self-contained Rust file that uses serde + serde_json for JSON serialization.
|
| |