#header #fnmatch #binding #header-file #period #slash #matched

sys fnmatch-sys

Rust 对 C 头文件 fnmatch.h 的绑定

1 个稳定版本

1.0.0 2020年11月14日

#3 in #slash


用于 2 crates

MIT/Apache

4KB

fnmatch-sys

提供 Rust ffi 链接到 C 头文件 fnmatch.h。根据 Rust 规范,不对提供的声明添加安全抽象。

构建

fnmatch.h 需要在 CC 的构建路径中,以便链接库。

提供的声明

    pub static FNM_NOMATCH: c_int; // Match failed.

    pub static FNM_NOESCAPE: c_int; // Disable backslash escpaing.

    pub static FNM_PATHNAME: c_int; // Slash must be matched by slash.

    pub static FNM_PERIOD: c_int; // Period must be matched by period.

    pub fn fnmatch(pattern: *const c_char, string: *const c_char, flags: c_int) -> c_int;

依赖项

~185KB