onig_sys/
lib.rs

1#[cfg(feature = "generate")]
2mod bindgened;
3
4#[cfg(feature = "generate")]
5pub use crate::bindgened::*;
6
7#[cfg(not(feature = "generate"))]
8#[allow(non_upper_case_globals)]
9#[allow(non_camel_case_types)]
10#[allow(non_snake_case)]
11#[allow(clippy::all)]
12mod ffi;
13
14#[cfg(not(feature = "generate"))]
15pub use self::ffi::*;
16
17// backfill types from the old hand-written bindings:
18
19pub type OnigSyntaxBehavior = ::std::os::raw::c_uint;
20pub type OnigSyntaxOp = ::std::os::raw::c_uint;
21pub type OnigSyntaxOp2 = ::std::os::raw::c_uint;
22
23#[test]
24fn test_is_linked() {
25    unsafe {
26        assert!(!onig_copyright().is_null());
27        assert!(!onig_version().is_null());
28    }
29}