1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2001 Alexey Zelkin <phantom@FreeBSD.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD$
29 */
30
31#ifndef _LANGINFO_H_
32#define	_LANGINFO_H_
33
34#include <sys/cdefs.h>
35#include <sys/_types.h>
36
37#ifndef _NL_ITEM_DECLARED
38typedef	__nl_item	nl_item;
39#define	_NL_ITEM_DECLARED
40#endif
41
42#define	CODESET		0	/* codeset name */
43#define	D_T_FMT		1	/* string for formatting date and time */
44#define	D_FMT		2	/* date format string */
45#define	T_FMT		3	/* time format string */
46#define	T_FMT_AMPM	4	/* a.m. or p.m. time formatting string */
47#define	AM_STR		5	/* Ante Meridian affix */
48#define	PM_STR		6	/* Post Meridian affix */
49
50/* week day names */
51#define	DAY_1		7
52#define	DAY_2		8
53#define	DAY_3		9
54#define	DAY_4		10
55#define	DAY_5		11
56#define	DAY_6		12
57#define	DAY_7		13
58
59/* abbreviated week day names */
60#define	ABDAY_1		14
61#define	ABDAY_2		15
62#define	ABDAY_3		16
63#define	ABDAY_4		17
64#define	ABDAY_5		18
65#define	ABDAY_6		19
66#define	ABDAY_7		20
67
68/* month names */
69#define	MON_1		21
70#define	MON_2		22
71#define	MON_3		23
72#define	MON_4		24
73#define	MON_5		25
74#define	MON_6		26
75#define	MON_7		27
76#define	MON_8		28
77#define	MON_9		29
78#define	MON_10		30
79#define	MON_11		31
80#define	MON_12		32
81
82/* abbreviated month names */
83#define	ABMON_1		33
84#define	ABMON_2		34
85#define	ABMON_3		35
86#define	ABMON_4		36
87#define	ABMON_5		37
88#define	ABMON_6		38
89#define	ABMON_7		39
90#define	ABMON_8		40
91#define	ABMON_9		41
92#define	ABMON_10	42
93#define	ABMON_11	43
94#define	ABMON_12	44
95
96#define	ERA		45	/* era description segments */
97#define	ERA_D_FMT	46	/* era date format string */
98#define	ERA_D_T_FMT	47	/* era date and time format string */
99#define	ERA_T_FMT	48	/* era time format string */
100#define	ALT_DIGITS	49	/* alternative symbols for digits */
101
102#define	RADIXCHAR	50	/* radix char */
103#define	THOUSEP		51	/* separator for thousands */
104
105#define	YESEXPR		52	/* affirmative response expression */
106#define	NOEXPR		53	/* negative response expression */
107
108#if __BSD_VISIBLE || (__XSI_VISIBLE && __XSI_VISIBLE <= 500)
109#define	YESSTR		54	/* affirmative response for yes/no queries */
110#define	NOSTR		55	/* negative response for yes/no queries */
111#endif
112
113#define	CRNCYSTR	56	/* currency symbol */
114
115#if __BSD_VISIBLE
116#define	D_MD_ORDER	57	/* month/day order (local extension) */
117#endif
118
119/* standalone months forms for %OB */
120#define	ALTMON_1	58
121#define	ALTMON_2	59
122#define	ALTMON_3	60
123#define	ALTMON_4	61
124#define	ALTMON_5	62
125#define	ALTMON_6	63
126#define	ALTMON_7	64
127#define	ALTMON_8	65
128#define	ALTMON_9	66
129#define	ALTMON_10	67
130#define	ALTMON_11	68
131#define	ALTMON_12	69
132
133__BEGIN_DECLS
134char	*nl_langinfo(nl_item);
135
136#if __POSIX_VISIBLE >= 200809 || defined(_XLOCALE_H_)
137#include <xlocale/_langinfo.h>
138#endif
139__END_DECLS
140
141#endif /* !_LANGINFO_H_ */
142