home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d183 / mklib.lha / Mklib / Edlib / iscsymf.c < prev    next >
C/C++ Source or Header  |  1989-02-26  |  310b  |  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.