Lines Matching +defs:temp +defs:file

89 load_entry(FILE *file, void (*error_func)(const char *), struct passwd *pw,
92 /* this function reads one crontab entry -- the next -- from a file.
112 skip_comments(file);
114 ch = get_char(file);
142 ch = get_string(cmd, MAX_COMMAND, file, " \t\n");
204 Skip_Blanks(ch, file);
213 NULL, ch, file);
225 NULL, ch, file);
237 NULL, ch, file);
247 MonthNames, ch, file);
259 DowNames, ch, file);
279 char *username = cmd; /* temp buffer */
281 unget_char(ch, file);
282 ch = get_string(username, MAX_COMMAND, file, " \t\n");
288 Skip_Blanks(ch, file)
362 switch (ch = get_char(file)) {
374 Skip_Blanks(ch, file)
393 unget_char(ch, file);
399 ch = get_string(cmd, MAX_COMMAND, file, "\n");
401 /* a file without a \n before the EOF is rude, so we'll complain...
422 while (ch != '\n' && !feof(file))
423 ch = get_char(file);
431 int ch, FILE *file)
452 if ((ch = get_range(bits, low, high, names, ch, file)) == EOF)
455 ch = get_char(file);
462 Skip_Nonblanks(ch, file)
463 Skip_Blanks(ch, file)
471 int ch, FILE *file)
487 ch = get_char(file);
492 ch = get_number(&num1, low, high, names, ch, file, ",-~ \t\n");
501 ch = get_char(file);
507 ch = get_number(&num2, low, high, names, ch, file, "/, \t\n");
514 ch = get_char(file);
520 ch = get_number(&num2, low, high, names, ch, file, "/, \t\n");
524 ch = get_char(file);
526 unget_char(ch, file);
531 unget_char(ch, file);
556 unget_char(ch, file);
570 ch = get_char(file);
579 ch = get_number(&num3, 0, max_step, NULL, ch, file, ", \t\n");
601 unget_char(ch, file);
610 FILE *file, const char *terms)
612 char temp[MAX_TEMPSTR], *pc;
615 pc = temp;
623 ch = get_char(file);
632 i = strtonum(temp, low, high, &errstr);
645 ch = get_char(file);
650 if (!strcasecmp(names[i], temp)) {
659 unget_char(ch, file);