home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff218.lzh / EdLib / man / IsCSym < prev    next >
Text File  |  1989-06-04  |  969b  |  38 lines

  1. ISCSYM(3)                  Library Functions                 ISCSYM(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      iscsym - tell whether given character could be found in a C
  7.      symbol
  8.  
  9. SYNOPSIS
  10.      #include <edlib.h>
  11.  
  12.      int iscsym(c)
  13.      char c;
  14.  
  15. DESCRIPTION
  16.      Iscsym tells whether it is possible that the given character
  17.      could appear in a C symbol. A C symbol might be the name of a
  18.      variable, structure, reserved word or a function. Not all
  19.      characters that are valid in a C symbol may be the first
  20.      character of an identifier in most implementations of C. In
  21.      most versions, the characters allowed after the first character
  22.      are the upper and lower case alphabetic characters, the digits
  23.      '0' to '9' and the underscore (_).
  24.  
  25. AUTHOR
  26.      Edwin Hoogerbeets 01/08/88
  27.  
  28. SEE ALSO
  29.      iscsymf(3)
  30.  
  31. BUGS
  32.      This function depends on the C compiler used, and thus the
  33.      characters that are valid in a C symbol may be different, even
  34.      on the same machine.
  35.  
  36.  
  37.  
  38.