#include <ctype.h>
Go to the source code of this file.
Functions | |
| FILE_LICENCE (GPL2_OR_LATER) | |
| int | isspace (int c) |
| Check to see if character is a space. | |
Definition in file ctype.c.
| FILE_LICENCE | ( | GPL2_OR_LATER | ) |
| int isspace | ( | int | c | ) |
Check to see if character is a space.
| c | Character |
| isspace | Character is a space |
Definition at line 36 of file ctype.c.
Referenced by script_load(), split_args(), and strtoul().
00036 { 00037 switch ( c ) { 00038 case ' ' : 00039 case '\f' : 00040 case '\n' : 00041 case '\r' : 00042 case '\t' : 00043 case '\v' : 00044 return 1; 00045 default: 00046 return 0; 00047 } 00048 }
1.5.7.1