/* Default table for determining whether a character is a word delimiter. */
static unsigned char Default_Delimiters [UCHAR_MAX] = {0};
static unsigned char Default_Delimiters [UCHAR_MAX+1] = {0};
static unsigned char *Current_Delimiters; /* Current delimiter table */