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 @@ -140,6 +140,7 @@ extern "C" {
140140 pub fn isspace ( c : c_int ) -> c_int ;
141141 pub fn isupper ( c : c_int ) -> c_int ;
142142 pub fn isxdigit ( c : c_int ) -> c_int ;
143+ pub fn isblank ( c : c_int ) -> c_int ;
143144 pub fn tolower ( c : c_int ) -> c_int ;
144145 pub fn toupper ( c : c_int ) -> c_int ;
145146 pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
Original file line number Diff line number Diff line change @@ -3293,6 +3293,7 @@ extern "C" {
32933293 pub fn isspace ( c : c_int ) -> c_int ;
32943294 pub fn isupper ( c : c_int ) -> c_int ;
32953295 pub fn isxdigit ( c : c_int ) -> c_int ;
3296+ pub fn isblank ( c : c_int ) -> c_int ;
32963297 pub fn tolower ( c : c_int ) -> c_int ;
32973298 pub fn toupper ( c : c_int ) -> c_int ;
32983299 pub fn fopen ( filename : * const c_char , mode : * const c_char ) -> * mut FILE ;
Original file line number Diff line number Diff line change @@ -385,6 +385,7 @@ extern "C" {
385385 pub fn isspace ( c : c_int ) -> c_int ;
386386 pub fn isupper ( c : c_int ) -> c_int ;
387387 pub fn isxdigit ( c : c_int ) -> c_int ;
388+ pub fn isblank ( c : c_int ) -> c_int ;
388389 pub fn tolower ( c : c_int ) -> c_int ;
389390 pub fn toupper ( c : c_int ) -> c_int ;
390391 #[ cfg_attr(
Original file line number Diff line number Diff line change @@ -962,6 +962,7 @@ extern "C" {
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 @@ -228,6 +228,7 @@ extern "C" {
228228 pub fn isspace ( c : c_int ) -> c_int ;
229229 pub fn isupper ( c : c_int ) -> c_int ;
230230 pub fn isxdigit ( c : c_int ) -> c_int ;
231+ pub fn isblank ( c : c_int ) -> c_int ;
231232 pub fn tolower ( c : c_int ) -> c_int ;
232233 pub fn toupper ( c : c_int ) -> c_int ;
233234 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