]> saetta.ns0.it Git - libzakutils/commitdiff
Added functions ::tm_to_gdate and ::gdate_to_tm from libgtkform.
authorAndrea Zagli <azagli@libero.it>
Sun, 6 Dec 2015 09:53:57 +0000 (10:53 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 6 Dec 2015 09:53:57 +0000 (10:53 +0100)
src/datetime.c
src/datetime.h

index d30102865f60d9e5dbe2b81d382a3d7ff89c3894..f097661da52686380927ab42b539f00ec33b44e5 100644 (file)
@@ -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:
index ed66e99aa47e9043c22ea5994350a72874621ef1..d695cfbb7a32fcdfc03e8dadaf98c61db3c83b36 100644 (file)
@@ -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);