Lines Matching refs:next
12 * The above copyright notice and this permission notice (including the next
30 * Return the next word in a string pointed to by state before the first
44 const char *next = *state;
47 if (!*next)
50 next += strspn(next, separators);
51 if (!*next) {
52 *state = next;
56 l = strcspn(next, separators);
57 *state = next + l;
60 return next;