Imported Upstream version 0.8.0.4
[psensor-pkg-debian.git] / src / lib / ptime.c
1 /*
2  * Copyright (C) 2010-2013 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include <stdlib.h>
20
21 #include "ptime.h"
22
23 char *time_to_str(time_t *t)
24 {
25         struct tm lt;
26         char *str;
27
28         if (!localtime_r(t, &lt))
29                 return NULL;
30
31         str = malloc(64);
32
33         if (strftime(str, 64, "%s", &lt)) {
34                 return str;
35         } else {
36                 free(str);
37                 return NULL;
38         }
39 }
40
41 char *get_time_str()
42 {
43         time_t t;
44
45         t = time(NULL);
46         return time_to_str(&t);
47 }