2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
13 * Copyright 2013 Garrett D'Amore <garrett@damore.org>
14 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
18 * LC_NUMERIC database generation routines for localedef.
24 #include <sys/types.h>
27 #include "localedef.h"
31 static struct lc_numeric numeric
;
36 (void) memset(&numeric
, 0, sizeof (numeric
));
40 add_numeric_str(wchar_t *wcs
)
44 if ((str
= to_mb_string(wcs
)) == NULL
) {
52 numeric
.decimal_point
= str
;
55 numeric
.thousands_sep
= str
;
65 reset_numeric_group(void)
67 free((char *)numeric
.grouping
);
68 numeric
.grouping
= NULL
;
72 add_numeric_group(int n
)
76 if (numeric
.grouping
== NULL
) {
77 (void) asprintf(&s
, "%d", n
);
79 (void) asprintf(&s
, "%s;%d", numeric
.grouping
, n
);
82 errf(_("out of memory"));
84 free((char *)numeric
.grouping
);
93 if ((f
= open_category()) == NULL
) {
97 if ((putl_category(numeric
.decimal_point
, f
) == EOF
) ||
98 (putl_category(numeric
.thousands_sep
, f
) == EOF
) ||
99 (putl_category(numeric
.grouping
, f
) == EOF
)) {