#define NOARGC  /* no arg count passing */
#define FIXARGC /* don't expect arg counts passed in */
/*
   return 'true' if c is a graphic character
   (33-126)
*/
isgraph(c) 
int c; 
{
  return (c>=33 && c<=126);
}
