1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# c2rs 这是一个将`c`语言的`struct`转换为`rust struct`宏 # 例子 ``` c2rs_def!( struct A{ }; struct B{ }; // ... ); ```