]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/Include/locale.h
Update or add comments to files and functions for use by Doxygen.
[mirror_edk2.git] / StdLib / Include / locale.h
CommitLineData
2aa62f2b 1/* $NetBSD: locale.h,v 1.14 2005/02/03 04:39:32 perry Exp $ */\r
2\r
3/*\r
4 * Copyright (c) 1991, 1993\r
5 * The Regents of the University of California. All rights reserved.\r
6 *\r
7 * Redistribution and use in source and binary forms, with or without\r
8 * modification, are permitted provided that the following conditions\r
9 * are met:\r
10 * 1. Redistributions of source code must retain the above copyright\r
11 * notice, this list of conditions and the following disclaimer.\r
12 * 2. Redistributions in binary form must reproduce the above copyright\r
13 * notice, this list of conditions and the following disclaimer in the\r
14 * documentation and/or other materials provided with the distribution.\r
15 * 3. Neither the name of the University nor the names of its contributors\r
16 * may be used to endorse or promote products derived from this software\r
17 * without specific prior written permission.\r
18 *\r
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\r
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\r
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
29 * SUCH DAMAGE.\r
30 *\r
31 * @(#)locale.h 8.1 (Berkeley) 6/2/93\r
32 */\r
33\r
34#ifndef _LOCALE_H_\r
35#define _LOCALE_H_\r
36\r
37struct lconv {\r
38 char *decimal_point;\r
39 char *thousands_sep;\r
40 char *grouping;\r
41 char *int_curr_symbol;\r
42 char *currency_symbol;\r
43 char *mon_decimal_point;\r
44 char *mon_thousands_sep;\r
45 char *mon_grouping;\r
46 char *positive_sign;\r
47 char *negative_sign;\r
48 char int_frac_digits;\r
49 char frac_digits;\r
50 char p_cs_precedes;\r
51 char p_sep_by_space;\r
52 char n_cs_precedes;\r
53 char n_sep_by_space;\r
54 char p_sign_posn;\r
55 char n_sign_posn;\r
56 char int_p_cs_precedes;\r
57 char int_n_cs_precedes;\r
58 char int_p_sep_by_space;\r
59 char int_n_sep_by_space;\r
60 char int_p_sign_posn;\r
61 char int_n_sign_posn;\r
62};\r
63\r
64#define LC_ALL 0\r
65#define LC_COLLATE 1\r
66#define LC_CTYPE 2\r
67#define LC_MONETARY 3\r
68#define LC_NUMERIC 4\r
69#define LC_TIME 5\r
70#define LC_MESSAGES 6\r
71\r
72#define _LC_LAST 7 /* marks end */\r
73\r
74#include <sys/EfiCdefs.h>\r
75\r
76__BEGIN_DECLS\r
77struct lconv *localeconv(void);\r
78 char *__setlocale_mb_len_max_32(int, const char *);\r
79#ifdef __SETLOCALE_SOURCE__\r
80 char *setlocale(int, const char *);\r
81 char *__setlocale(int, const char *);\r
82#else /* !__SETLOCALE_SOURCE__ */\r
83 char *setlocale(int, const char *) __RENAME(__setlocale_mb_len_max_32);\r
84#endif /* !__SETLOCALE_SOURCE__ */\r
85__END_DECLS\r
86\r
87#endif /* _LOCALE_H_ */\r