ctype.c File Reference

Character types. More...

#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.


Detailed Description

Character types.

Definition in file ctype.c.


Function Documentation

FILE_LICENCE ( GPL2_OR_LATER   ) 

int isspace ( int  c  ) 

Check to see if character is a space.

Parameters:
c Character
Return values:
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 }


Generated on Tue Apr 6 20:01:14 2010 for gPXE by  doxygen 1.5.7.1