NameCheck(name[]){ new i, ch; while ((ch = name[i++]) && (ch == '_') || ('0' <= ch <= '9') || ((ch |= 0x20) && ('a' <= ch <= 'z')))) {} return !ch;}