1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Rust bindings for the [Oniguruma](https://github.com/kkos/oniguruma)
//! regular expressions library.
//!
//! Example of usage:
//!
//! ```rust
//! use oniguruma::Regex;
//!
//! let regex = Regex::new("e(l+)").unwrap();
//! for (i, pos) in regex.captures("hello").unwrap().iter_pos().enumerate() {
//!     match pos {
//!          Some((beg, end)) =>
//!              println!("Group {} captured in position {}:{}", i, beg, end),
//!          None =>
//!              println!("Group {} is not captured", i)
//!     }
//! }
//! ```
extern crate libc;

#[macro_use]
extern crate bitflags;

mod flags;
mod captures;
mod encoding;
mod regex;
mod region;
mod syntax;

#[cfg(test)]
mod test;

// re-export
pub use flags::*;
pub use captures::*;
pub use encoding::*;
pub use regex::*;
pub use region::*;
pub use syntax::*;