home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / man / cat3 / isspace.0 < prev    next >
Text File  |  1993-12-07  |  1KB  |  67 lines

  1.  
  2. ISSPACE(3)                 UNIX Programmer's Manual                 ISSPACE(3)
  3.  
  4. NNAAMMEE
  5.      iissssppaaccee - white­space character test
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ccttyyppee..hh>>
  9.  
  10.      _i_n_t
  11.      iissssppaaccee(_i_n_t _c)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The iissssppaaccee() function tests for the standard white­space characters for
  15.      which isalnum(3) is false.  The standard white­space characters are the
  16.      following:
  17.  
  18.            ` '    Space character.
  19.            \f     Form feed.
  20.            \n     New­line.
  21.            \r     Carriage return.
  22.            \t     Horizontal tab.
  23.            \v     And vertical tab.
  24.  
  25.      In the _`_`_C_'_' locale, iissssppaaccee() returns true only for the standard white­
  26.      space characters.
  27.  
  28. RREETTUURRNN VVAALLUUEESS
  29.      The iissssppaaccee() macro returns zero if the character tests false and returns
  30.      non­zero if the character tests true.
  31.  
  32. SSEEEE AALLSSOO
  33.      isascii(3),  isalnum(3),  isalpha(3),  iscntrl(3),  isdigit(3),
  34.      isgraph(3),  islower(3),  isprint(3),  ispunct(3),  isupper(3),
  35.      isxdigit(3),  toascii(3),  tolower(3),  toupper(3),  stdio(3) ascii(7)
  36.  
  37. SSTTAANNDDAARRDDSS
  38.      The iissssppaaccee() function conforms to ANSI C3.159­1989 (``ANSI C'').
  39.  
  40. BSD Experimental                 July 31, 1991                               1
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.