blob: 636355b6fb3b0cb203e0cf9e12cba656d38a1bfe [file] [log] [blame]
#include <ctype.h>
int ispunct(int c) {
return isgraph(c) && !isalnum(c);
}