From b254597d852bb11492d11c8ae6976e4f58ea0d42 Mon Sep 17 00:00:00 2001 From: Arturo Espinosa Date: Wed, 1 Apr 1998 03:41:40 +0000 Subject: iCalendar/vCalendar time utilties svn path=/trunk/; revision=81 --- calendar/Makefile.am | 9 +++++++-- calendar/gui/Makefile.am | 9 +++++++-- calendar/timeutil.c | 29 +++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+), 4 deletions(-) create mode 100644 calendar/timeutil.c (limited to 'calendar') diff --git a/calendar/Makefile.am b/calendar/Makefile.am index f4c7ead95d..529b9cca23 100644 --- a/calendar/Makefile.am +++ b/calendar/Makefile.am @@ -3,7 +3,9 @@ INCLUDES = \ $(GNOME_INCLUDEDIR) \ -I../../gcalendar -bin_PROGRAMS = gncal +bin_PROGRAMS = gncal objedit + +objedit_SOURCES = objedit.c gncal_SOURCES = \ gncal.c \ @@ -13,13 +15,16 @@ gncal_SOURCES = \ clist.c \ clist.h -gncal_LDADD = \ +LINK_FLAGS = \ $(GNOME_LIBDIR) \ $(GNOMEUI_LIBS) \ $(INTLLIBS) \ ../../gcalendar/gtkcalendar.o \ ../../gcalendar/lib_date.o +gncal_LDADD = $(LINK_FLAGS) +objedit_LDADD = $(LINK_FLAGS) + EXTRA_DIST = \ gncal.desktop diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index f4c7ead95d..529b9cca23 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -3,7 +3,9 @@ INCLUDES = \ $(GNOME_INCLUDEDIR) \ -I../../gcalendar -bin_PROGRAMS = gncal +bin_PROGRAMS = gncal objedit + +objedit_SOURCES = objedit.c gncal_SOURCES = \ gncal.c \ @@ -13,13 +15,16 @@ gncal_SOURCES = \ clist.c \ clist.h -gncal_LDADD = \ +LINK_FLAGS = \ $(GNOME_LIBDIR) \ $(GNOMEUI_LIBS) \ $(INTLLIBS) \ ../../gcalendar/gtkcalendar.o \ ../../gcalendar/lib_date.o +gncal_LDADD = $(LINK_FLAGS) +objedit_LDADD = $(LINK_FLAGS) + EXTRA_DIST = \ gncal.desktop diff --git a/calendar/timeutil.c b/calendar/timeutil.c new file mode 100644 index 0000000000..2de1fa4b2b --- /dev/null +++ b/calendar/timeutil.c @@ -0,0 +1,29 @@ +#include +#include + +#define digit_at(x,y) (x [y] - '0') + +time_t +time_from_isodate (char *str) +{ + struct tm my_tm; + + my_tm.tm_year = digit_at (str, 0) * 1000 + digit_at (str, 1) * 100 + + digit_at (str, 2) * 10 + digit_at (str, 3); + + my_tm.tm_mon = digit_at (str, 4) * 10 + digit_at (str, 5); + my_tm.tm_mday = digit_at (str, 6) * 10 + digit_at (str, 7); + my_tm.tm_hour = digit_at (str, 9) * 10 + digit_at (str, 10); + my_tm.tm_min = digit_at (str, 11) * 10 + digit_at (str, 12); + my_tm.tm_sec = digit_at (str, 13) * 10 + digit_at (str, 14); + my_tm.tm_isdst = -1; + + return mktime (&my_tm); +} + +time_t +time_from_start_duration (time_t start, char *duration) +{ + printf ("Not yet implemented\n"); + return 0; +} -- cgit v1.2.3