summaryrefslogtreecommitdiffstats
path: root/man-pages-posix-2017/man3p/nl_langinfo.3p
blob: 6d1cdedabe1495f68e58c7433d45d0dc2cbe608c (plain) (blame)
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
'\" et
.TH NL_LANGINFO "3P" 2017 "IEEE/The Open Group" "POSIX Programmer's Manual"
.\"
.SH PROLOG
This manual page is part of the POSIX Programmer's Manual.
The Linux implementation of this interface may differ (consult
the corresponding Linux manual page for details of Linux behavior),
or the interface may not be implemented on Linux.
.\"
.SH NAME
nl_langinfo,
nl_langinfo_l
\(em language information
.SH SYNOPSIS
.LP
.nf
#include <langinfo.h>
.P
char *nl_langinfo(nl_item \fIitem\fP);
char *nl_langinfo_l(nl_item \fIitem\fP, locale_t \fIlocale\fP);
.fi
.SH DESCRIPTION
The
\fInl_langinfo\fR()
and
\fInl_langinfo_l\fR()
functions shall return a pointer to a string containing information
relevant to the particular language or cultural area defined in the
current locale, or in the locale represented by
.IR locale ,
respectively (see
.IR <langinfo.h> ).
The manifest constant names and values of
.IR item
are defined in
.IR <langinfo.h> .
For example:
.sp
.RS 4
.nf

nl_langinfo(ABDAY_1)
.fi
.P
.RE
.P
would return a pointer to the string
.BR \(dqDom\(dq 
if the identified language was Portuguese, and
.BR \(dqSun\(dq 
if the identified language was English.
.sp
.RS 4
.nf

nl_langinfo_l(ABDAY_1, loc)
.fi
.P
.RE
.P
would return a pointer to the string
.BR \(dqDom\(dq 
if the identified language of the locale represented by
.IR loc
was Portuguese, and
.BR \(dqSun\(dq 
if the identified language of the locale represented by
.IR loc
was English.
.P
The
\fInl_langinfo\fR()
function need not be thread-safe.
.P
The behavior is undefined if the
.IR locale
argument to
\fInl_langinfo_l\fR()
is the special locale object LC_GLOBAL_LOCALE or is not a valid locale
object handle.
.SH "RETURN VALUE"
In a locale where
.IR langinfo
data is not defined, these functions shall return a pointer to the
corresponding string in the POSIX locale. In all locales, these functions
shall return a pointer to an empty string if
.IR item
contains an invalid setting.
.P
The application shall not modify the string returned. The pointer
returned by
\fInl_langinfo\fR()
might be invalidated or the string content might be overwritten by a
subsequent call to
\fInl_langinfo\fR()
in any thread or to
\fInl_langinfo_l\fR()
in the same thread or the initial thread, by subsequent calls to
\fIsetlocale\fR()
with a category corresponding to the category of
.IR item
(see
.IR <langinfo.h> )
or the category LC_ALL, or by subsequent calls to
\fIuselocale\fR()
which change the category corresponding to the category of
.IR item .
The pointer returned by
\fInl_langinfo_l\fR()
might be invalidated or the string content might be overwritten by a
subsequent call to
\fInl_langinfo_l\fR()
in the same thread or to
\fInl_langinfo\fR()
in any thread, or by subsequent calls to
\fIfreelocale\fR()
or
\fInewlocale\fR()
which free or modify the locale object that was passed to
\fInl_langinfo_l\fR().
The returned pointer and the string content might also be
invalidated if the calling thread is terminated.
.SH "ERRORS"
No errors are defined.
.br
.LP
.IR "The following sections are informative."
.SH EXAMPLES
.SS "Getting Date and Time Formatting Information"
.P
The following example returns a pointer to a string containing date and
time formatting information, as defined in the
.IR LC_TIME
category of the current locale.
.sp
.RS 4
.nf

#include <time.h>
#include <langinfo.h>
\&...
strftime(datestring, sizeof(datestring), nl_langinfo(D_T_FMT), tm);
\&...
.fi
.P
.RE
.SH "APPLICATION USAGE"
The array pointed to by the return value should not be modified by the
program, but may be modified by further calls to these functions.
.SH RATIONALE
The possible interactions between internal data used by
\fInl_langinfo\fR()
and
\fInl_langinfo_l\fR()
are complicated by the fact that
\fInl_langinfo_l\fR()
must be thread-safe but
\fInl_langinfo\fR()
need not be. The various implementation choices are:
.IP " 1." 4
\fInl_langinfo_l\fR()
and
\fInl_langinfo\fR()
use separate buffers, or at least one of them does not use an internal
string buffer. In this case there are no interactions.
.IP " 2." 4
\fInl_langinfo_l\fR()
and
\fInl_langinfo\fR()
share an internal per-thread buffer. There can be interactions, but
only in the same thread.
.IP " 3." 4
\fInl_langinfo_l\fR()
uses an internal per-thread buffer, and
\fInl_langinfo\fR()
uses (in all threads) the same buffer that
\fInl_langinfo_l\fR()
uses in the initial thread. There can be interactions, but only when
\fInl_langinfo_l\fR()
is called in the initial thread.
.SH "FUTURE DIRECTIONS"
None.
.SH "SEE ALSO"
.IR "\fIsetlocale\fR\^(\|)",
.IR "\fIuselocale\fR\^(\|)"
.P
The Base Definitions volume of POSIX.1\(hy2017,
.IR "Chapter 7" ", " "Locale",
.IR "\fB<langinfo.h>\fP",
.IR "\fB<locale.h>\fP",
.IR "\fB<nl_types.h>\fP"
.\"
.SH COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form
from IEEE Std 1003.1-2017, Standard for Information Technology
-- Portable Operating System Interface (POSIX), The Open Group Base
Specifications Issue 7, 2018 Edition,
Copyright (C) 2018 by the Institute of
Electrical and Electronics Engineers, Inc and The Open Group.
In the event of any discrepancy between this version and the original IEEE and
The Open Group Standard, the original IEEE and The Open Group Standard
is the referee document. The original Standard can be obtained online at
http://www.opengroup.org/unix/online.html .
.PP
Any typographical or formatting errors that appear
in this page are most likely
to have been introduced during the conversion of the source files to
man page format. To report such errors, see
https://www.kernel.org/doc/man-pages/reporting_bugs.html .