1LOCALECONV(3) Linux Programmer's Manual LOCALECONV(3)
2
3
4
6 localeconv - get numeric formatting information
7
9 #include <locale.h>
10
11 struct lconv *localeconv(void);
12
14 The localeconv() function returns a pointer to a struct lconv for the
15 current locale. This structure is shown in locale(7), and contains all
16 values associated with the locale categories LC_NUMERIC and LC_MONE‐
17 TARY. Programs may also use the functions printf(3) and strfmon(3),
18 which behave according to the actual locale in use.
19
21 C89, C99.
22
24 The printf(3) family of functions may or may not honor the current
25 locale.
26
28 locale(1), localedef(1), isalpha(3), nl_langinfo(3), setlocale(3), str‐
29 coll(3), strftime(3), locale(7)
30
32 This page is part of release 3.22 of the Linux man-pages project. A
33 description of the project, and information about reporting bugs, can
34 be found at http://www.kernel.org/doc/man-pages/.
35
36
37
38GNU 1993-04-25 LOCALECONV(3)