File:  [DVB] / dietlibc / lib / isprint.c
Revision 1.5: download - view: text, annotated - select for diffs
Tue Apr 4 03:10:40 2006 UTC (18 years, 2 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
  HP-PA fixes (Micah Anderson, Hubert Poetzl)
  some locale touchups

#include <ctype.h>
#include "dietlocale.h"

int isprint (int ch) {
  ch&=0x7f;
  return (ch>=32 && ch<127);
}

LinuxTV legacy CVS <linuxtv.org/cvs>