libmarpa_sys/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! Generated bindings to [libmarpa]
//!
//! [libmarpa]: https://jeffreykegler.github.io/Marpa-web-site/libmarpa.html

#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]

mod raw {
    include!(concat!(env!("OUT_DIR"), "/raw.rs"));
}
pub use crate::raw::*;

#[cfg(test)]
mod test;