/*
 * edlib v1.1 Copyright 1989 Edwin Hoogerbeets
 * This code is freely redistributable as long as no charge other than
 * reasonable copying fees are levied for it.
 */

/*
    iscsymf is included here because Manx for some reason does not have
    it in ctype.h. tells whether or not the given character may be the
    first character of a valid C symbol
*/
#include <ctype.h>
int iscsymf(c)
register char c;
{
    return( isalpha(c) || c == '_' );
}
