libc

A portable C Library
Log | Files | Refs | README

isalpha.c (82B)


      1 #include "ctype.h"
      2 
      3 int
      4 (isalpha)(int c)
      5 {
      6 	return (_Ctype[c] & (_LO|_UP|_XA));
      7 }