gnurx-sys 0.3.14

Regular expression functionality from glibc extracted into a separate library, for Win32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
#![cfg(all(
    target_os = "windows",
    target_env = "gnu",
    any(target_arch = "x86", target_arch = "x86_64")
))]
#![doc(html_root_url = "https://docs.rs/gnurx-sys/0.3.14")]

#[cfg(test)]
mod tests;

extern crate alloc;

include!(concat!(env!("OUT_DIR"), "/gnurx-sys.rs"));