cmacro 0.2.2

A library for parsing C macros and generating Rust code.
Documentation
1
2
3
4
5
6
7
8
#[doc(hidden)]
#[macro_export]
macro_rules! __cmacro__INLINE_COMMENTS {
  ($a:expr, $b:expr, $c:expr) => {
    $a % ($b / $c)
  };
}
pub use __cmacro__INLINE_COMMENTS as INLINE_COMMENTS;