Home
last modified time | relevance | path

Searched refs:tokbuf (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/usr.sbin/dhcpd/
Dconflex.c77 static char tokbuf[1500]; variable
239 tokbuf[i++] = c; in read_string()
241 } while (i < (sizeof(tokbuf) - 1) && c != EOF && c != '"'); in read_string()
248 tokbuf[i] = 0; in read_string()
249 tval = tokbuf; in read_string()
261 tokbuf[0] = c; in read_num_or_name()
262 for (i = 1; i < sizeof(tokbuf); i++) { in read_num_or_name()
271 tokbuf[i] = c; in read_num_or_name()
273 if (i == sizeof(tokbuf)) { in read_num_or_name()
276 c = tokbuf[i]; in read_num_or_name()
[all …]
/openbsd/src/gnu/llvm/llvm/tools/llvm-c-test/
Dhelpers.c22 char *tokbuf[MAX_TOKENS]; in llvm_tokenize_stdin() local
31 tokbuf[c] = strtok(c ? NULL : line, " \n"); in llvm_tokenize_stdin()
32 if (!tokbuf[c]) in llvm_tokenize_stdin()
37 cb(tokbuf, c); in llvm_tokenize_stdin()