Rev | Author | # | Line |
---|---|---|---|
1 | perry | 1 | LOCALECONV |
2 | !!!LOCALECONV | ||
3 | NAME | ||
4 | SYNOPSIS | ||
5 | DESCRIPTION | ||
6 | CONFORMING TO | ||
7 | BUGS | ||
8 | SEE ALSO | ||
9 | ---- | ||
10 | !!NAME | ||
11 | |||
12 | |||
13 | localeconv - get numeric formatting information | ||
14 | !!SYNOPSIS | ||
15 | |||
16 | |||
17 | __#include | ||
18 | __ | ||
19 | !!DESCRIPTION | ||
20 | |||
21 | |||
22 | The __localeconv()__ function returns a pointer to a | ||
23 | __struct lconv__ for the current locale. This structure | ||
24 | is defined in the header-file __locale.h__ and contains | ||
25 | all values associated with the locale categories | ||
26 | __LC_NUMERIC__ and __LC_MONETARY__. Programs may also | ||
27 | use the functions __printf()__ and __strfmon()__ that | ||
28 | behave according the the actual locale in use. | ||
29 | !!CONFORMING TO | ||
30 | |||
31 | |||
32 | ANSI C, POSIX.1 | ||
33 | !!BUGS | ||
34 | |||
35 | |||
36 | The __printf()__ family of functions may or may not honor | ||
37 | the current locale. | ||
38 | !!SEE ALSO | ||
39 | |||
40 | |||
41 | locale(1), localedef(1), strcoll(3), | ||
42 | isalpha(3), setlocale(3), strftime(3), | ||
43 | locale(7) | ||
44 | ---- |