Lines Matching refs:t
40 char **t; in parse_main() local
51 t = xmalloc(sizeof(t[0]) * ntokens); in parse_main()
55 while ((n = config_read(p, t, ntokens, mintokens, delims, flags)) != 0) { in parse_main()
58 printf("[%s]", t[i]); in parse_main()
167 int t; in config_read() local
205 t = 0; in config_read()
208 tokens[t] = line; in config_read()
211 if ((t != (ntokens-1)) || !(flags & PARSE_GREEDY)) { in config_read()
233 strcpy_and_process_escape_sequences(tokens[t], tokens[t]); in config_read()
240 t++; in config_read()
241 } while (*line && *line != delims[0] && t < ntokens); in config_read()
243 if (t < mintokens) { in config_read()
245 parser->lineno, t, mintokens); in config_read()
251 return t; in config_read()