aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/timeutil.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1998-04-01 11:56:40 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-01 11:56:40 +0800
commit8a5a6f0d159014504eef07d1a4439885b5552280 (patch)
tree61c98872b04013d7297dd34abec6b3f9966bb530 /calendar/timeutil.c
parenta0487eaeb01996bfeed740c78862e0b15b66d6cd (diff)
downloadgsoc2013-evolution-8a5a6f0d159014504eef07d1a4439885b5552280.tar
gsoc2013-evolution-8a5a6f0d159014504eef07d1a4439885b5552280.tar.gz
gsoc2013-evolution-8a5a6f0d159014504eef07d1a4439885b5552280.tar.bz2
gsoc2013-evolution-8a5a6f0d159014504eef07d1a4439885b5552280.tar.lz
gsoc2013-evolution-8a5a6f0d159014504eef07d1a4439885b5552280.tar.xz
gsoc2013-evolution-8a5a6f0d159014504eef07d1a4439885b5552280.tar.zst
gsoc2013-evolution-8a5a6f0d159014504eef07d1a4439885b5552280.zip
New function, formats an hour/am_pm pair into a string of the form "3am",
1998-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx> * timeutil.c (format_simple_hour): New function, formats an hour/am_pm pair into a string of the form "3am", "12pm", "05h", "19h", etc. It is used by the day view widget for its labels. svn path=/trunk/; revision=83
Diffstat (limited to 'calendar/timeutil.c')
-rw-r--r--calendar/timeutil.c32
1 files changed, 30 insertions, 2 deletions
diff --git a/calendar/timeutil.c b/calendar/timeutil.c
index 2de1fa4b2b..fb3bce4582 100644
--- a/calendar/timeutil.c
+++ b/calendar/timeutil.c
@@ -1,5 +1,13 @@
-#include <glib.h>
-#include <time.h>
+/* 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>
+ */
+
+#include <libgnome/libgnome.h>
+#include "timeutil.h"
#define digit_at(x,y) (x [y] - '0')
@@ -27,3 +35,23 @@ time_from_start_duration (time_t start, char *duration)
printf ("Not yet implemented\n");
return 0;
}
+
+char *
+format_simple_hour (int hour, int use_am_pm)
+{
+ char buf[256];
+
+ /* I don't know whether this is the best way to internationalize it.
+ * Does any language use different conventions? - Federico
+ */
+
+ if (use_am_pm)
+ sprintf (buf, "%d%s",
+ (hour == 0) ? 12 : (hour > 12) ? (hour - 12) : hour,
+ (hour < 12) ? _("am") : _("pm"));
+ else
+ sprintf (buf, "%02d%s", hour, _("h"));
+
+ return buf;
+
+}