From: Andrea Zagli Date: Sun, 6 Dec 2015 09:53:57 +0000 (+0100) Subject: Added functions ::tm_to_gdate and ::gdate_to_tm from libgtkform. X-Git-Tag: v0.0.1~7 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=9de0aac0d6fb592678812f877241b8463d0b4612;p=libzakutils Added functions ::tm_to_gdate and ::gdate_to_tm from libgtkform. --- diff --git a/src/datetime.c b/src/datetime.c index d301028..f097661 100644 --- a/src/datetime.c +++ b/src/datetime.c @@ -78,6 +78,46 @@ GDateTime return ret; } + +/** + * zak_utils_tm_to_gdate: + * @tm_date: + * + * Returns: a #GDate that represent the struct tm without time information. + */ +GDate +*zak_utils_tm_to_gdate (struct tm *tm_date) +{ + GDate *ret; + + ret = NULL; + + if (tm_date != NULL) + { + ret = g_date_new_dmy (tm_date->tm_mday, + tm_date->tm_mon + 1, + tm_date->tm_year + 1900); + + if (ret == NULL || !g_date_valid (ret)) + { + ret = NULL; + } + } + + return ret; +} + +/** + * zak_utils_tm_to_gdate: + * @gdate: + * + */ +struct tm +*zak_utils_gdate_to_tm (GDate *gdate) +{ + return zak_utils_gdatetime_to_tm (zak_utils_gdate_to_gdatetime (gdate)); +} + /** * zak_utils_gdatetime_to_tm: * @gdatetime: diff --git a/src/datetime.h b/src/datetime.h index ed66e99..d695cfb 100644 --- a/src/datetime.h +++ b/src/datetime.h @@ -31,6 +31,9 @@ struct tm *zak_utils_get_now_tm (void); GDate *zak_utils_get_today_gdate (void); GDateTime *zak_utils_tm_to_gdatetime (struct tm *tm_date); +GDate *zak_utils_tm_to_gdate (struct tm *tm_date); + +struct tm *zak_utils_gdate_to_tm (GDate *gdate); struct tm *zak_utils_gdatetime_to_tm (GDateTime *gdatetime); GDateTime *zak_utils_gdate_to_gdatetime (GDate *gdate);