pcre2_sys/
lib.rs

1#![allow(non_camel_case_types, non_snake_case, non_upper_case_globals)]
2
3pub use crate::bindings::*;
4
5mod bindings;
6#[cfg(test)]
7mod tests;
8
9// It is weird that this isn't caught by bindgen. Dunno why.
10pub const PCRE2_UNSET: usize = ::std::usize::MAX;