aboutsummaryrefslogtreecommitdiff
path: root/lib/configuration/locale.c
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-01-10 22:06:06 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-01-22 12:22:26 +0100
commit5e15341857e57671a3c617579e3d5dcc89040936 (patch)
tree8d90ea72c77ccef7f6b6d5eba199204ce01b27d6 /lib/configuration/locale.c
parent413b86050e364db51eb4f1bb095f70b141c02919 (diff)
Print the float numbers using the user locale
Diffstat (limited to 'lib/configuration/locale.c')
-rw-r--r--lib/configuration/locale.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/configuration/locale.c b/lib/configuration/locale.c
new file mode 100644
index 0000000..eeafd26
--- /dev/null
+++ b/lib/configuration/locale.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+#include <locale.h>
+#include <caml/memory.h>
+#include <caml/alloc.h>
+
+CAMLprim value set_locale( value param )
+{
+ const char *s;
+ s = String_val(param);
+ setlocale(LC_NUMERIC, s);
+ return Val_unit;
+}