Initial regex.h implementation
Showing
- Cargo.lock 7 additions, 0 deletionsCargo.lock
- Cargo.toml 1 addition, 0 deletionsCargo.toml
- Makefile 1 addition, 0 deletionsMakefile
- include/sys/types.h 1 addition, 0 deletionsinclude/sys/types.h
- src/header/mod.rs 1 addition, 0 deletionssrc/header/mod.rs
- src/header/regex/cbindgen.toml 7 additions, 0 deletionssrc/header/regex/cbindgen.toml
- src/header/regex/mod.rs 183 additions, 0 deletionssrc/header/regex/mod.rs
- src/lib.rs 1 addition, 0 deletionssrc/lib.rs
- src/platform/types.rs 1 addition, 0 deletionssrc/platform/types.rs
- tests/Makefile 1 addition, 0 deletionstests/Makefile
- tests/expected/regex.stderr 0 additions, 0 deletionstests/expected/regex.stderr
- tests/expected/regex.stdout 3 additions, 0 deletionstests/expected/regex.stdout
- tests/regex.c 31 additions, 0 deletionstests/regex.c
... | ... | @@ -18,6 +18,7 @@ cc = "1.0.17" |
cbitset = "0.1.0" | ||
core_io = { path = "core_io", features = ["collections"] } | ||
lazy_static = { version = "*", features = ["nightly", "spin_no_std"] } | ||
posix-regex = { version = "0.1", features = ["no_std"] } | ||
rand = { version = "0.5.2", default-features = false } | ||
va_list = { path = "va_list", features = ["no_std"] } | ||
... | ... |
src/header/regex/cbindgen.toml
0 → 100644
src/header/regex/mod.rs
0 → 100644
tests/expected/regex.stderr
0 → 100644
tests/expected/regex.stdout
0 → 100644
tests/regex.c
0 → 100644
Please register or sign in to comment