Lines Matching defs:next
384 * Return a pointer to the next non-space character in the string.
538 char *next;
551 next = ++line;
553 next = strchr(next, '"');
554 if (next == NULL)
556 (void) memmove(next, next + 1, strlen(next));
558 if (*next != '"')
560 next++;
563 next = strpbrk(line, " \t");
565 if (next != NULL)
566 *next++ = '\0';
568 next = line_end;
572 line = next;
576 line = next;
592 line = next;