Skip to content

Commit b11e2d4

Browse files
committed
add isblank
1 parent 71e298f commit b11e2d4

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libc"
3-
version = "0.2.64"
3+
version = "0.2.65"
44
authors = ["The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

src/cloudabi/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ extern {
136136
pub fn isspace(c: c_int) -> c_int;
137137
pub fn isupper(c: c_int) -> c_int;
138138
pub fn isxdigit(c: c_int) -> c_int;
139+
pub fn isblank(c: c_int) -> c_int;
139140
pub fn tolower(c: c_int) -> c_int;
140141
pub fn toupper(c: c_int) -> c_int;
141142
pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE;

src/fuchsia/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3282,6 +3282,7 @@ extern {
32823282
pub fn isspace(c: c_int) -> c_int;
32833283
pub fn isupper(c: c_int) -> c_int;
32843284
pub fn isxdigit(c: c_int) -> c_int;
3285+
pub fn isblank(c: c_int) -> c_int;
32853286
pub fn tolower(c: c_int) -> c_int;
32863287
pub fn toupper(c: c_int) -> c_int;
32873288
pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE;

src/unix/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ extern {
379379
pub fn isspace(c: c_int) -> c_int;
380380
pub fn isupper(c: c_int) -> c_int;
381381
pub fn isxdigit(c: c_int) -> c_int;
382+
pub fn isblank(c: c_int) -> c_int;
382383
pub fn tolower(c: c_int) -> c_int;
383384
pub fn toupper(c: c_int) -> c_int;
384385
#[cfg_attr(

src/vxworks/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -962,6 +962,7 @@ extern {
962962
pub fn isspace(c: c_int) -> c_int;
963963
pub fn isupper(c: c_int) -> c_int;
964964
pub fn isxdigit(c: c_int) -> c_int;
965+
pub fn isblank(c: c_int) -> c_int;
965966
pub fn tolower(c: c_int) -> c_int;
966967
pub fn toupper(c: c_int) -> c_int;
967968
pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE;

src/windows/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ extern {
222222
pub fn isspace(c: c_int) -> c_int;
223223
pub fn isupper(c: c_int) -> c_int;
224224
pub fn isxdigit(c: c_int) -> c_int;
225+
pub fn isblank(c: c_int) -> c_int;
225226
pub fn tolower(c: c_int) -> c_int;
226227
pub fn toupper(c: c_int) -> c_int;
227228
pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE;

0 commit comments

Comments
 (0)