File tree Expand file tree Collapse file tree 5 files changed +5
-0
lines changed Expand file tree Collapse file tree 5 files changed +5
-0
lines changed Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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(
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments