aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/timeutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/timeutil.h')
-rw-r--r--calendar/timeutil.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/calendar/timeutil.h b/calendar/timeutil.h
new file mode 100644
index 0000000000..4f062b8923
--- /dev/null
+++ b/calendar/timeutil.h
@@ -0,0 +1,26 @@
+/* Miscellaneous time-related utilities
+ *
+ * Copyright (C) 1998 The Free Software Foundation
+ *
+ * Authors: Federico Mena <federico@nuclecu.unam.mx>
+ * Miguel de Icaza <miguel@nuclecu.unam.mx>
+ */
+
+#ifndef TIMEUTIL_H
+#define TIMEUTIL_H
+
+
+#include <time.h>
+
+
+time_t time_from_isodate (char *str);
+time_t time_from_start_duration (time_t start, char *duration);
+
+/* Returns pointer to a statically-allocated buffer with a string of the form
+ * 3am, 4am, 12pm, 08h, 17h, etc.
+ * The string is internationalized, hopefully correctly.
+ */
+char *format_simple_hour (int hour, int use_am_pm);
+
+
+#endif