From ade0470197934fba87eb5113a7ecb2d542a6ed73 Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Thu, 23 Jul 2009 18:33:20 +0000 Subject: Functions added to implement a logging mechanism for calcurse daemon. --- src/utils.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index 34cb142..9e4da1d 100755 --- a/src/utils.c +++ b/src/utils.c @@ -1,4 +1,4 @@ -/* $calcurse: utils.c,v 1.77 2009/07/20 19:45:27 culot Exp $ */ +/* $calcurse: utils.c,v 1.78 2009/07/23 18:33:21 culot Exp $ */ /* * Calcurse - text-based organizer @@ -764,6 +764,18 @@ now (void) return (current_time); } +char * +nowstr (void) +{ + static char buf[BUFSIZ]; + time_t now; + + (void)time (&now); + (void)strftime (buf, sizeof buf, "%a %b %d %T %Y", localtime (&now)); + + return buf; +} + long mystrtol (const char *str) { -- cgit v1.2.3-54-g00ecf