diff options
author | Frederic Culot <calcurse@culot.org> | 2007-07-01 17:56:08 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-07-01 17:56:08 +0000 |
commit | 34093881f1d9c3097d42f784be124ada12e73ff1 (patch) | |
tree | c0f846b626f5753397382ebc31e8d2854f0c461b /src | |
parent | 6c467203d85b69b5dc49002a2f34d20fe943a456 (diff) | |
download | calcurse-34093881f1d9c3097d42f784be124ada12e73ff1.tar.gz calcurse-34093881f1d9c3097d42f784be124ada12e73ff1.zip |
app_arg() modified to use date_t type
Diffstat (limited to 'src')
-rwxr-xr-x | src/args.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: args.h,v 1.6 2007/03/24 23:14:00 culot Exp $ */ +/* $calcurse: args.h,v 1.7 2007/07/01 17:56:08 culot Exp $ */ /* * Calcurse - text-based organizer @@ -36,7 +36,7 @@ void version_arg(); void help_arg(); void todo_arg(int priority); void next_arg(void); -int app_arg(int add_line, int year, int month, int day, long date); +int app_arg(int add_line, date_t day, long date); void date_arg(char *ddate, int add_line); int check_date(char *date); void arg_print_date(long date); |