/************************************************************* * File: lib/isprint.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ /************************************************************ * isprint(c) * returns true if c is a printing character */ isprint(c) int c; { if (c >= ' ' && c <= '~') return(1); return(0); }