xref: /freebsd/include/locale.h (revision 5a1d14419a5b620430949a46cb6ee63148a43cb9)
1*2321c474SPedro F. Giffuni /*-
2*2321c474SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*2321c474SPedro F. Giffuni  *
459deaec5SRodney W. Grimes  * Copyright (c) 1991, 1993
559deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
659deaec5SRodney W. Grimes  *
759deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
859deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
959deaec5SRodney W. Grimes  * are met:
1059deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1259deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1359deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1459deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15f2556687SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
1659deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1759deaec5SRodney W. Grimes  *    without specific prior written permission.
1859deaec5SRodney W. Grimes  *
1959deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2059deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2159deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2259deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2359deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2459deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2559deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2659deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2759deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2859deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2959deaec5SRodney W. Grimes  * SUCH DAMAGE.
3059deaec5SRodney W. Grimes  */
3159deaec5SRodney W. Grimes 
3259deaec5SRodney W. Grimes #ifndef _LOCALE_H_
3359deaec5SRodney W. Grimes #define _LOCALE_H_
3459deaec5SRodney W. Grimes 
3512eb46c8SMarcel Moolenaar #include <sys/_null.h>
3612eb46c8SMarcel Moolenaar 
3759deaec5SRodney W. Grimes struct lconv {
3859deaec5SRodney W. Grimes 	char	*decimal_point;
3959deaec5SRodney W. Grimes 	char	*thousands_sep;
4059deaec5SRodney W. Grimes 	char	*grouping;
4159deaec5SRodney W. Grimes 	char	*int_curr_symbol;
4259deaec5SRodney W. Grimes 	char	*currency_symbol;
4359deaec5SRodney W. Grimes 	char	*mon_decimal_point;
4459deaec5SRodney W. Grimes 	char	*mon_thousands_sep;
4559deaec5SRodney W. Grimes 	char	*mon_grouping;
4659deaec5SRodney W. Grimes 	char	*positive_sign;
4759deaec5SRodney W. Grimes 	char	*negative_sign;
4859deaec5SRodney W. Grimes 	char	int_frac_digits;
4959deaec5SRodney W. Grimes 	char	frac_digits;
5059deaec5SRodney W. Grimes 	char	p_cs_precedes;
5159deaec5SRodney W. Grimes 	char	p_sep_by_space;
5259deaec5SRodney W. Grimes 	char	n_cs_precedes;
5359deaec5SRodney W. Grimes 	char	n_sep_by_space;
5459deaec5SRodney W. Grimes 	char	p_sign_posn;
5559deaec5SRodney W. Grimes 	char	n_sign_posn;
56f4da1a75STim J. Robbins 	char	int_p_cs_precedes;
57f4da1a75STim J. Robbins 	char	int_n_cs_precedes;
58f4da1a75STim J. Robbins 	char	int_p_sep_by_space;
59f4da1a75STim J. Robbins 	char	int_n_sep_by_space;
60f4da1a75STim J. Robbins 	char	int_p_sign_posn;
61f4da1a75STim J. Robbins 	char	int_n_sign_posn;
6259deaec5SRodney W. Grimes };
6359deaec5SRodney W. Grimes 
6459deaec5SRodney W. Grimes #define	LC_ALL		0
6559deaec5SRodney W. Grimes #define	LC_COLLATE	1
6659deaec5SRodney W. Grimes #define	LC_CTYPE	2
6759deaec5SRodney W. Grimes #define	LC_MONETARY	3
6859deaec5SRodney W. Grimes #define	LC_NUMERIC	4
6959deaec5SRodney W. Grimes #define	LC_TIME		5
700b5e953bSAndrey A. Chernov #define	LC_MESSAGES	6
7159deaec5SRodney W. Grimes 
720b5e953bSAndrey A. Chernov #define	_LC_LAST	7		/* marks end */
7359deaec5SRodney W. Grimes 
7459deaec5SRodney W. Grimes #include <sys/cdefs.h>
7559deaec5SRodney W. Grimes 
7659deaec5SRodney W. Grimes __BEGIN_DECLS
77bb28f3c2SWarner Losh struct lconv	*localeconv(void);
78bb28f3c2SWarner Losh char		*setlocale(int, const char *);
7959deaec5SRodney W. Grimes 
803c87aa1dSDavid Chisnall #if __POSIX_VISIBLE >= 200809
81a8ed63bbSDavid Chisnall #include <xlocale/_locale.h>
82a8ed63bbSDavid Chisnall #endif
833c87aa1dSDavid Chisnall __END_DECLS
843c87aa1dSDavid Chisnall 
853c87aa1dSDavid Chisnall 
8659deaec5SRodney W. Grimes #endif /* _LOCALE_H_ */
87