home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 216.lha / EdLib_v1.0 / iscsymf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-15  |  310 b   |  13 lines

  1. /* edlib  version 1.0 of 04/08/88 */
  2. /*
  3.     iscsymf is included here because Manx for some reason does not have
  4.     it in ctype.h. tells whether or not the given character may be the
  5.     first character of a valid C symbol
  6. */
  7. #include <ctype.h>
  8. int iscsymf(c)
  9. char c;
  10. {
  11.     return( isalpha(c) || c == '_' );
  12. }
  13.