aboutsummaryrefslogtreecommitdiff
path: root/src/rc/rc-misc.c
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2017-05-11 16:06:12 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2017-05-11 16:06:12 -0500
commitcf5e9aa2bbcdf1783fadeab26586c1134929d928 (patch)
tree2033aec06cc4b684b971d28c7fe8053f76b7cbfa /src/rc/rc-misc.c
parenta3250e77d412f2290e381b9e7569930d95e4fc5b (diff)
Move time_t conversions to rc-misc.c so they can be shared
Diffstat (limited to 'src/rc/rc-misc.c')
-rw-r--r--src/rc/rc-misc.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/rc/rc-misc.c b/src/rc/rc-misc.c
index 8afff0a2..b75c3b4e 100644
--- a/src/rc/rc-misc.c
+++ b/src/rc/rc-misc.c
@@ -442,3 +442,37 @@ RC_SERVICE lookup_service_state(const char *service)
return service_bits[i].bit;
return 0;
}
+
+char *from_time_t(time_t tv)
+{
+ char time_string[20];
+
+ strftime(time_string, 20, "%Y-%m-%d %H:%M:%S", localtime(&tv));
+ return time_string;
+}
+
+time_t to_time_t(char *timestring)
+{
+ int check = 0;
+ int year = 0;
+ int month = 0;
+ int day = 0;
+ int hour = 0;
+ int min = 0;
+ int sec = 0;
+ struct tm breakdown = {0};
+ time_t result = -1;
+
+ check = sscanf(timestring, "%4d-%2d-%2d %2d:%2d:%2d",
+ &year, &month, &day, &hour, &min, &sec);
+ if (check == 6) {
+ breakdown.tm_year = year - 1900; /* years since 1900 */
+ breakdown.tm_mon = month - 1;
+ breakdown.tm_mday = day;
+ breakdown.tm_hour = hour;
+ breakdown.tm_min = min;
+ breakdown.tm_sec = sec;
+ result = mktime(&breakdown);
+ }
+ return result;
+}