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 / IsCSymF < prev    next >
Text File  |  1989-06-04  |  1KB  |  39 lines

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