c2rs 0.1.1

C Struct to Rust struct
Documentation

c2rs

This is a macro that converts the struct of the c language into a rust struct

Crates.io MIT licensed

use

// Cargo.toml

[dependencies]
c2rs = "0.1.1"

example

c2rs_def!(
    struct A{

    };

    struct B{
        
    };

    // ...
);