ec288a1b53
Add ctype functions - isalnum - isalpha - isascii - isdigit - islower - isspace - isupper Add stdlib functions - atoi - atol Fix some warnings Make a fmt run
14 lines
317 B
TOML
14 lines
317 B
TOML
[package]
|
|
name = "stdlib"
|
|
version = "0.1.0"
|
|
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
cbindgen = { path = "../../cbindgen" }
|
|
|
|
[dependencies]
|
|
platform = { path = "../platform" }
|
|
ralloc = { path = "../../ralloc", default-features = false }
|
|
ctype = { path = "../ctype" }
|