From: Vincent Bernat > Use linux/ctype.h instead of defining custom versions of > isxdigit/isspace/isalnum. ... > -#define isspace(c) (c == ' ' || c == '\t' || c == 10 || c == 13 || c == 0) That is different from the version in linux/ctype.h Especially for 'c == 0', but probably also vertical tab and form feed. David