File tree 6 files changed +6
-1
lines changed
6 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " libc"
3
- version = " 0.2.64 "
3
+ version = " 0.2.65 "
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT OR Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ extern {
136
136
pub fn isspace ( c : c_int ) -> c_int ;
137
137
pub fn isupper ( c : c_int ) -> c_int ;
138
138
pub fn isxdigit ( c : c_int ) -> c_int ;
139
+ pub fn isblank ( c : c_int ) -> c_int ;
139
140
pub fn tolower ( c : c_int ) -> c_int ;
140
141
pub fn toupper ( c : c_int ) -> c_int ;
141
142
pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
Original file line number Diff line number Diff line change @@ -3282,6 +3282,7 @@ extern {
3282
3282
pub fn isspace ( c : c_int ) -> c_int ;
3283
3283
pub fn isupper ( c : c_int ) -> c_int ;
3284
3284
pub fn isxdigit ( c : c_int ) -> c_int ;
3285
+ pub fn isblank ( c : c_int ) -> c_int ;
3285
3286
pub fn tolower ( c : c_int ) -> c_int ;
3286
3287
pub fn toupper ( c : c_int ) -> c_int ;
3287
3288
pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
Original file line number Diff line number Diff line change @@ -379,6 +379,7 @@ extern {
379
379
pub fn isspace ( c : c_int ) -> c_int ;
380
380
pub fn isupper ( c : c_int ) -> c_int ;
381
381
pub fn isxdigit ( c : c_int ) -> c_int ;
382
+ pub fn isblank ( c : c_int ) -> c_int ;
382
383
pub fn tolower ( c : c_int ) -> c_int ;
383
384
pub fn toupper ( c : c_int ) -> c_int ;
384
385
#[ cfg_attr(
Original file line number Diff line number Diff line change @@ -962,6 +962,7 @@ extern {
962
962
pub fn isspace ( c : c_int ) -> c_int ;
963
963
pub fn isupper ( c : c_int ) -> c_int ;
964
964
pub fn isxdigit ( c : c_int ) -> c_int ;
965
+ pub fn isblank ( c : c_int ) -> c_int ;
965
966
pub fn tolower ( c : c_int ) -> c_int ;
966
967
pub fn toupper ( c : c_int ) -> c_int ;
967
968
pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
Original file line number Diff line number Diff line change @@ -222,6 +222,7 @@ extern {
222
222
pub fn isspace ( c : c_int ) -> c_int ;
223
223
pub fn isupper ( c : c_int ) -> c_int ;
224
224
pub fn isxdigit ( c : c_int ) -> c_int ;
225
+ pub fn isblank ( c : c_int ) -> c_int ;
225
226
pub fn tolower ( c : c_int ) -> c_int ;
226
227
pub fn toupper ( c : c_int ) -> c_int ;
227
228
pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
You can’t perform that action at this time.
0 commit comments