Lines Matching defs:tokbuf
771 char tokbuf[256+1];
832 cp = &tokbuf[0];
834 if (cp > &tokbuf[256])
846 if ((int) strlen(tokbuf) > KTAB_STRLEN)
848 strings[nstrings] = strdup(tokbuf);
880 cp = &tokbuf[0];
882 if (cp > &tokbuf[256])
890 if (strlen(tokbuf) == 1) {
892 yylval.number = (unsigned char)tokbuf[0];
893 } else if (strlen(tokbuf) == 2 && tokbuf[0] == '^') {
895 yylval.number = (unsigned char)(tokbuf[1] & 037);
901 for (cp = &tokbuf[0]; (c = *cp) != '\0'; cp++) {
905 word.w_string = tokbuf;
913 yylval.number = strtol(tokbuf, &ptr, 10);
914 if (ptr == tokbuf)