Alcune correzioni ai file header.
#include <glib.h>
#include <glib-object.h>
-#include <solipa.h>
+#include <libsolipa/solipa.h>
G_BEGIN_DECLS
#include <libsolipa/solipa.h>
#include <libsolipa/allegato.h>
#include <libsolipa/mail.h>
+#include <libsolipa/utils.h>
#endif /* __LIBSOLIPA_H__ */
#include <camel/camel.h>
-#include <solipa.h>
+#include <libsolipa/solipa.h>
G_BEGIN_DECLS
}
gchar
-*solipa_format_money (gdouble number, gboolean with_currency_symbol)
+*solipa_format_money (gdouble number,
+ gint decimals,
+ gboolean with_currency_symbol)
{
gchar *ret;
GRegex *regex;
GError *error;
+ gchar *str_format;
gchar *str;
gssize str_len;
return "";
}
- ret = g_strdup_printf ("%0.2f", number);
+ str_format = g_strdup_printf ("%%0%sf", decimals == 0 ? "" : (decimals < 0 ? ".2" : g_strdup_printf (".%d", decimals)));
+ ret = g_strdup_printf (str_format, number);
while (TRUE)
{
if (g_strcmp0 (ret, str) != 0)
{
ret = g_strdup (str);
+ g_free (str);
}
else
{
#include <gtk/gtk.h>
-#include <solipa.h>
+#include <libsolipa/solipa.h>
G_BEGIN_DECLS
gchar **columns_title,
guint n_columns);
-gchar *solipa_format_money (gdouble number, gboolean with_currency_symbol);
+gchar *solipa_format_money (gdouble number, gint decimals, gboolean with_currency_symbol);
G_END_DECLS
{
gtk_init (&argc, &argv);
- g_message ("%s", solipa_format_money (g_strtod (argv[1], NULL), FALSE));
+ g_message ("%s", solipa_format_money (g_strtod (argv[1], NULL), 3, FALSE));
return 0;
}