Home | History | Annotate | Download | only in src

Lines Matching refs:line_ptr

516   char *line_ptr;
544 line_ptr = (char*)FDKstrchr(line, '\n');
545 if (line_ptr != NULL)
546 *line_ptr = ' ';
548 line_ptr = line;
553 while (*line_ptr == ' ' && line_ptr < line+CMDL_MAX_STRLEN)
554 line_ptr++;
556 argv_ptr[argc] = line_ptr;
558 line_ptr = (char*)FDKstrchr(line_ptr, ' ');
560 if (line_ptr != NULL) {
562 *line_ptr = 0;
564 line_ptr++;
568 } while ( line_ptr != NULL && argc < CMDL_MAX_ARGC);