#include int iscntrl(int c) { return (c<32) || (c>=127 && c<=160); }