libc

A portable C Library
Log | Files | Refs | README

isprint.c (94B)


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