├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── rustfmt.toml └── src ├── lib.rs ├── libc.rs └── win_crt.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel5151/libc_alloc/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel5151/libc_alloc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel5151/libc_alloc/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | wrap_comments = true 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel5151/libc_alloc/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/libc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel5151/libc_alloc/HEAD/src/libc.rs -------------------------------------------------------------------------------- /src/win_crt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel5151/libc_alloc/HEAD/src/win_crt.rs --------------------------------------------------------------------------------