Deleted Added
full compact
parsetime.c (87230) parsetime.c (87628)
1/*
2 * parsetime.c - parse time for at(1)
3 * Copyright (C) 1993, 1994 Thomas Koenig
4 *
5 * modifications for English-language times
6 * Copyright (C) 1993 David Parsons
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * /NUMBER [DOT NUMBER] [AM|PM]\ /[MONTH NUMBER [NUMBER]] \
30 * |NOON | |[TOMORROW] |
31 * |MIDNIGHT | |[DAY OF WEEK] |
32 * \TEATIME / |NUMBER [SLASH NUMBER [SLASH NUMBER]]|
33 * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/
34 */
35
36#include <sys/cdefs.h>
1/*
2 * parsetime.c - parse time for at(1)
3 * Copyright (C) 1993, 1994 Thomas Koenig
4 *
5 * modifications for English-language times
6 * Copyright (C) 1993 David Parsons
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * /NUMBER [DOT NUMBER] [AM|PM]\ /[MONTH NUMBER [NUMBER]] \
30 * |NOON | |[TOMORROW] |
31 * |MIDNIGHT | |[DAY OF WEEK] |
32 * \TEATIME / |NUMBER [SLASH NUMBER [SLASH NUMBER]]|
33 * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/
34 */
35
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD: head/usr.bin/at/parsetime.c 87628 2001-12-10 21:13:08Z dwmalone $");
37
38
38__FBSDID("$FreeBSD: head/usr.bin/at/parsetime.c 87230 2001-12-02 20:23:02Z markm $");
39
40/* System Headers */
41
42#include <sys/types.h>
43#include <ctype.h>
44#include <err.h>
45#include <errno.h>
46#include <stdio.h>
47#include <stdlib.h>

--- 592 unchanged lines hidden ---
39/* System Headers */
40
41#include <sys/types.h>
42#include <ctype.h>
43#include <err.h>
44#include <errno.h>
45#include <stdio.h>
46#include <stdlib.h>

--- 592 unchanged lines hidden ---