blob: 2a7040b38922b1a2e56a5d490250ab51ab7bf413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2014 Garrett D'Amore <garrett@damore.org>
*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
#ifndef _LANGINFO_H
#define _LANGINFO_H
#include <sys/feature_tests.h>
#include <nl_types.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* The seven days of the week in their full beauty
*/
#define DAY_1 1 /* sunday */
#define DAY_2 2 /* monday */
#define DAY_3 3 /* tuesday */
#define DAY_4 4 /* wednesday */
#define DAY_5 5 /* thursday */
#define DAY_6 6 /* friday */
#define DAY_7 7 /* saturday */
/*
* The abbreviated seven days of the week
*/
#define ABDAY_1 8 /* sun */
#define ABDAY_2 9 /* mon */
#define ABDAY_3 10 /* tue */
#define ABDAY_4 11 /* wed */
#define ABDAY_5 12 /* thu */
#define ABDAY_6 13 /* fri */
#define ABDAY_7 14 /* sat */
/*
* The full names of the twelve months...
*/
#define MON_1 15 /* january */
#define MON_2 16 /* february */
#define MON_3 17 /* march */
#define MON_4 18 /* april */
#define MON_5 19 /* may */
#define MON_6 20 /* june */
#define MON_7 21 /* july */
#define MON_8 22 /* august */
#define MON_9 23 /* september */
#define MON_10 24 /* october */
#define MON_11 25 /* november */
#define MON_12 26 /* december */
/*
* ... and their abbreviated form
*/
#define ABMON_1 27 /* jan */
#define ABMON_2 28 /* feb */
#define ABMON_3 29 /* mar */
#define ABMON_4 30 /* apr */
#define ABMON_5 31 /* may */
#define ABMON_6 32 /* jun */
#define ABMON_7 33 /* jul */
#define ABMON_8 34 /* aug */
#define ABMON_9 35 /* sep */
#define ABMON_10 36 /* oct */
#define ABMON_11 37 /* nov */
#define ABMON_12 38 /* dec */
/*
* plus some special strings you might need to know
*/
#define RADIXCHAR 39 /* radix character */
#define THOUSEP 40 /* separator for thousand */
/* YESSTR and NOSTR marked as legacy in XPG5 and removed in SUSv3 */
#if !defined(_XPG6) || defined(__EXTENSIONS__)
#define YESSTR 41 /* affirmative response for yes/no queries */
#define NOSTR 42 /* negative response for yes/no queries */
#endif /* !defined(_XPG6) || defined(__EXTENSIONS__ */
#define CRNCYSTR 43 /* currency symbol */
/*
* Default string used to format date and time
* e.g. Sunday, August 24 21:08:38 MET 1986
*/
#define D_T_FMT 44 /* string for formatting date and time */
#define D_FMT 45 /* date format */
#define T_FMT 46 /* time format */
#define AM_STR 47 /* am string */
#define PM_STR 48 /* pm string */
/*
* Additions for XPG4 (XSH4) Compliance
*/
#define CODESET 49 /* codeset name */
#define T_FMT_AMPM 50 /* am or pm time format string */
#define ERA 51 /* era description segments */
#define ERA_D_FMT 52 /* era date format string */
#define ERA_D_T_FMT 53 /* era date and time format string */
#define ERA_T_FMT 54 /* era time format string */
#define ALT_DIGITS 55 /* alternative symbols for digits */
#define YESEXPR 56 /* affirmative response expression */
#define NOEXPR 57 /* negative response expression */
#define _DATE_FMT 58 /* strftime format for date(1) */
#if defined(__EXTENSIONS__) || !defined(_XOPEN_SOURCE)
#define MAXSTRMSG 58 /* Maximum number of strings in langinfo */
#endif /* defined(__EXTENSIONS__) || !defined(_XOPEN_SOURCE) */
/*
* and the definitions of functions langinfo(3C)
*/
char *nl_langinfo(nl_item); /* get a string from the database */
#if defined(_XPG7) || !defined(_STRICT_SYMBOLS)
#ifndef _LOCALE_T
#define _LOCALE_T
typedef struct _locale *locale_t;
#endif
char *nl_langinfo_l(nl_item, locale_t);
#endif
#ifdef __cplusplus
}
#endif
#endif /* _LANGINFO_H */
|