return ret;
}
+gchar
+*solipa_gdatetime_format (GDateTime *gdatetime, const gchar *format)
+{
+ gchar *ret;
+
+ if (gdatetime == NULL) return "";
+
+ ret = g_date_time_format (gdatetime, format);
+
+ if (ret == NULL) return "";
+
+ return ret;
+}
+
gdouble
solipa_round (gdouble value, guint n_decimals)
{
const gchar *solipa_gdatetime_to_sql (GDateTime *gdatetime, const gchar *format);
GDateTime *solipa_get_gdatetime_from_string (const gchar *string, const gchar *format);
+gchar *solipa_gdatetime_format (GDateTime *gdatetime, const gchar *format);
gdouble solipa_round (gdouble value, guint n_decimals);