#endif
#include <errno.h>
+#include <math.h>
#include <gio/gio.h>
#include <gtk/gtk.h>
(GDateYear)tt_tm->tm_year + 1900);
}
+gdouble
+solipa_round (gdouble value, guint n_decimals)
+{
+ gfloat elev;
+ gint i;
+ gfloat ret;
+
+ elev = pow (10.0, (gfloat)n_decimals);
+
+ ret = (value * elev) + 0.5;
+ i = (gint)ret;
+
+ ret = (gfloat)i / elev;
+
+ return ret;
+}
+
/**
* This function is copied from
* http://bugzilla.gnome.org/show_bug.cgi?id=524831.
struct tm *solipa_get_now_tm (void);
GDate *solipa_get_today_gdate (void);
+gdouble solipa_round (gdouble value, guint n_decimals);
+
gchar *g_mkdtemp (gchar *tmpl);
--- /dev/null
+/*
+ * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <solipa.h>
+#include <utils.h>
+
+int
+main (int argc, char *argv[])
+{
+ gtk_init (&argc, &argv);
+
+ g_message ("%f", solipa_round (g_strtod (argv[1], NULL), 2));
+
+ return 0;
+}