Home | History | Annotate | Download | only in src

Lines Matching defs:line

87    Description: command line parser
142 FDKprintf("No command line arguments\n");
148 FDKprintf("Error allocating memory line %d, file %s\n", __LINE__, __FILE__);
161 FDKprintf("Error allocating memory line %d, file %s\n", __LINE__, __FILE__);
501 static char line[CMDL_MAX_STRLEN*CMDL_MAX_ARGC];
535 /* Obtain a command line from config file */
536 while (FDKfgets(line, CMDL_MAX_STRLEN*CMDL_MAX_ARGC, config_fp) != NULL)
541 line_ptr = (char*)FDKstrchr(line, '\n');
545 line_ptr = line;
547 /* Scan the line and put the command line params into argv */
550 while (*line_ptr == ' ' && line_ptr < line+CMDL_MAX_STRLEN)