#include int ispunct(int c) { return isgraph(c) && !isalnum(c); }