diff options
Diffstat (limited to 'coreutils/cal.c')
-rw-r--r-- | coreutils/cal.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/coreutils/cal.c b/coreutils/cal.c index f18c161..ef1c29b 100644 --- a/coreutils/cal.c +++ b/coreutils/cal.c @@ -16,6 +16,15 @@ * * Major size reduction... over 50% (>1.5k) on i386. */ + +//usage:#define cal_trivial_usage +//usage: "[-jy] [[MONTH] YEAR]" +//usage:#define cal_full_usage "\n\n" +//usage: "Display a calendar\n" +//usage: "\nOptions:" +//usage: "\n -j Use julian dates" +//usage: "\n -y Display the entire year" + #include "libbb.h" #include "unicode.h" |