This crate provides a builder API for building C code.
This crate is inspired by codegen-rs
.
Code contributions are welcome. The submitter must use the sign-off feature for all commits confirming that the submitter has all rights to contribute the code under the license without any additional terms or conditions.
See the AUTHORS file for a list of contributors.
To use cgen-rs
clone the repository into the lib
folder of your Rust project,
or use crates.io
You can use cgen-rs
by adding the following lines to Cargo.toml
file.
To use codegen-rs
, first add this to your Cargo.toml
:
toml
[dependencies]
cgen-rs = { path = "lib/cgen-rs" }
Next, create a Scope
and use the builder API to create elements in the scope.
Lastly, call Scope::to_string()
to get formatted C code as a string.
```rust use cgen_rs as CG;
let mut scope = CG::Scope::new(); scope.setfilename("include/myfile.hpp");
scope.pushdocstr("WARNING: This is auto-generated comment\n"); scope.new_include("stdio.h", true);
scope.newclass("MyClass") .setbase("StateBase", CG::Visibility::Public) .pushattribute(Attribute::new("name", Type::newint(8)));
println!("{}", scope.to_string()); ```