Lines Matching +defs:file +defs:start

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);
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)
623 ch = get_char(file);
645 ch = get_char(file);
659 unget_char(ch, file);
676 set_range(bitstr_t *bits, int low, int high, int start, int stop, int step)
680 if (start < low || stop > high)
682 start -= low;
686 bit_nset(bits, start, stop);
690 for (i = start; i <= stop; i += step)