1 @node Locales, Message Translation, Character Set Handling, Top
2 @c %MENU% The country and language can affect the behavior of library functions
3 @chapter Locales and Internationalization
5 Different countries and cultures have varying conventions for how to
6 communicate. These conventions range from very simple ones, such as the
7 format for representing dates and times, to very complex ones, such as
10 @cindex internationalization
12 @dfn{Internationalization} of software means programming it to be able
13 to adapt to the user's favorite conventions. In @w{ISO C},
14 internationalization works by means of @dfn{locales}. Each locale
15 specifies a collection of conventions, one convention for each purpose.
16 The user chooses a set of conventions by specifying a locale (via
17 environment variables).
19 All programs inherit the chosen locale as part of their environment.
20 Provided the programs are written to obey the choice of locale, they
21 will follow the conventions preferred by the user.
24 * Effects of Locale:: Actions affected by the choice of
26 * Choosing Locale:: How the user specifies a locale.
27 * Locale Categories:: Different purposes for which you can
29 * Setting the Locale:: How a program specifies the locale
30 with library functions.
31 * Standard Locales:: Locale names available on all systems.
32 * Locale Names:: Format of system-specific locale names.
33 * Locale Information:: How to access the information for the locale.
34 * Formatting Numbers:: A dedicated function to format numbers.
35 * Yes-or-No Questions:: Check a Response against the locale.
38 @node Effects of Locale, Choosing Locale, , Locales
39 @section What Effects a Locale Has
41 Each locale specifies conventions for several purposes, including the
46 What multibyte character sequences are valid, and how they are
47 interpreted (@pxref{Character Set Handling}).
50 Classification of which characters in the local character set are
51 considered alphabetic, and upper- and lower-case conversion conventions
52 (@pxref{Character Handling}).
55 The collating sequence for the local language and character set
56 (@pxref{Collation Functions}).
59 Formatting of numbers and currency amounts (@pxref{General Numeric}).
62 Formatting of dates and times (@pxref{Formatting Calendar Time}).
65 What language to use for output, including error messages
66 (@pxref{Message Translation}).
69 What language to use for user answers to yes-or-no questions
70 (@pxref{Yes-or-No Questions}).
73 What language to use for more complex user input.
74 (The C library doesn't yet help you implement this.)
77 Some aspects of adapting to the specified locale are handled
78 automatically by the library subroutines. For example, all your program
79 needs to do in order to use the collating sequence of the chosen locale
80 is to use @code{strcoll} or @code{strxfrm} to compare strings.
82 Other aspects of locales are beyond the comprehension of the library.
83 For example, the library can't automatically translate your program's
84 output messages into other languages. The only way you can support
85 output in the user's favorite language is to program this more or less
86 by hand. The C library provides functions to handle translations for
87 multiple languages easily.
89 This chapter discusses the mechanism by which you can modify the current
90 locale. The effects of the current locale on specific library functions
91 are discussed in more detail in the descriptions of those functions.
93 @node Choosing Locale, Locale Categories, Effects of Locale, Locales
94 @section Choosing a Locale
96 The simplest way for the user to choose a locale is to set the
97 environment variable @code{LANG}. This specifies a single locale to use
98 for all purposes. For example, a user could specify a hypothetical
99 locale named @samp{espana-castellano} to use the standard conventions of
102 The set of locales supported depends on the operating system you are
103 using, and so do their names, except that the standard locale called
104 @samp{C} or @samp{POSIX} always exist. @xref{Locale Names}.
106 In order to force the system to always use the default locale, the
107 user can set the @code{LC_ALL} environment variable to @samp{C}.
109 @cindex combining locales
110 A user also has the option of specifying different locales for
111 different purposes---in effect, choosing a mixture of multiple
112 locales. @xref{Locale Categories}.
114 For example, the user might specify the locale @samp{espana-castellano}
115 for most purposes, but specify the locale @samp{usa-english} for
116 currency formatting. This might make sense if the user is a
117 Spanish-speaking American, working in Spanish, but representing monetary
118 amounts in US dollars.
120 Note that both locales @samp{espana-castellano} and @samp{usa-english},
121 like all locales, would include conventions for all of the purposes to
122 which locales apply. However, the user can choose to use each locale
123 for a particular subset of those purposes.
125 @node Locale Categories, Setting the Locale, Choosing Locale, Locales
126 @section Locale Categories
127 @cindex categories for locales
128 @cindex locale categories
130 The purposes that locales serve are grouped into @dfn{categories}, so
131 that a user or a program can choose the locale for each category
132 independently. Here is a table of categories; each name is both an
133 environment variable that a user can set, and a macro name that you can
134 use as the first argument to @code{setlocale}.
136 The contents of the environment variable (or the string in the second
137 argument to @code{setlocale}) has to be a valid locale name.
142 @standards{ISO, locale.h}
143 This category applies to collation of strings (functions @code{strcoll}
144 and @code{strxfrm}); see @ref{Collation Functions}.
147 @standards{ISO, locale.h}
148 This category applies to classification and conversion of characters,
149 and to multibyte and wide characters;
150 see @ref{Character Handling}, and @ref{Character Set Handling}.
153 @standards{ISO, locale.h}
154 This category applies to formatting monetary values; see @ref{General Numeric}.
157 @standards{ISO, locale.h}
158 This category applies to formatting numeric values that are not
159 monetary; see @ref{General Numeric}.
162 @standards{ISO, locale.h}
163 This category applies to formatting date and time values; see
164 @ref{Formatting Calendar Time}.
167 @standards{XOPEN, locale.h}
168 This category applies to selecting the language used in the user
169 interface for message translation (@pxref{The Uniforum approach};
170 @pxref{Message catalogs a la X/Open}) and contains regular expressions
171 for affirmative and negative responses.
174 @standards{ISO, locale.h}
175 This is not a category; it is only a macro that you can use
176 with @code{setlocale} to set a single locale for all purposes. Setting
177 this environment variable overwrites all selections by the other
178 @code{LC_*} variables or @code{LANG}.
181 @standards{ISO, locale.h}
182 If this environment variable is defined, its value specifies the locale
183 to use for all purposes except as overridden by the variables above.
187 When developing the message translation functions it was felt that the
188 functionality provided by the variables above is not sufficient. For
189 example, it should be possible to specify more than one locale name.
190 Take a Swedish user who better speaks German than English, and a program
191 whose messages are output in English by default. It should be possible
192 to specify that the first choice of language is Swedish, the second
193 German, and if this also fails to use English. This is
194 possible with the variable @code{LANGUAGE}. For further description of
195 this GNU extension see @ref{Using gettextized software}.
197 @node Setting the Locale, Standard Locales, Locale Categories, Locales
198 @section How Programs Set the Locale
200 A C program inherits its locale environment variables when it starts up.
201 This happens automatically. However, these variables do not
202 automatically control the locale used by the library functions, because
203 @w{ISO C} says that all programs start by default in the standard @samp{C}
204 locale. To use the locales specified by the environment, you must call
205 @code{setlocale}. Call it as follows:
208 setlocale (LC_ALL, "");
212 to select a locale based on the user choice of the appropriate
213 environment variables.
215 @cindex changing the locale
216 @cindex locale, changing
217 You can also use @code{setlocale} to specify a particular locale, for
218 general use or for a specific category.
221 The symbols in this section are defined in the header file @file{locale.h}.
223 @deftypefun {char *} setlocale (int @var{category}, const char *@var{locale})
224 @standards{ISO, locale.h}
225 @safety{@prelim{}@mtunsafe{@mtasuconst{:@mtslocale{}} @mtsenv{}}@asunsafe{@asuinit{} @asulock{} @ascuheap{} @asucorrupt{}}@acunsafe{@acuinit{} @acucorrupt{} @aculock{} @acsmem{} @acsfd{}}}
226 @c Uses of the global locale object are unguarded in functions that
227 @c ought to be MT-Safe, so we're ruling out the use of this function
228 @c once threads are started. It takes a write lock itself, but it may
229 @c return a pointer loaded from the global locale object after releasing
230 @c the lock, or before taking it.
231 @c setlocale @mtasuconst:@mtslocale @mtsenv @asuinit @ascuheap @asulock @asucorrupt @acucorrupt @acsmem @acsfd @aculock
232 @c libc_rwlock_wrlock @asulock @aculock
233 @c libc_rwlock_unlock @aculock
234 @c getenv LOCPATH @mtsenv
235 @c malloc @ascuheap @acsmem
236 @c free @ascuheap @acsmem
237 @c new_composite_name ok
240 @c _nl_find_locale @mtsenv @asuinit @ascuheap @asulock @asucorrupt @acucorrupt @acsmem @acsfd @aculock
241 @c getenv LC_ALL and LANG @mtsenv
242 @c _nl_load_locale_from_archive @ascuheap @acucorrupt @acsmem @acsfd
243 @c sysconf _SC_PAGE_SIZE ok
244 @c _nl_normalize_codeset @ascuheap @acsmem
245 @c isalnum_l ok (C locale)
246 @c isdigit_l ok (C locale)
247 @c malloc @ascuheap @acsmem
248 @c tolower_l ok (C locale)
249 @c open_not_cancel_2 @acsfd
251 @c close_not_cancel_no_status ok
253 @c calculate_head_size ok
255 @c compute_hashval ok
256 @c qsort dup @acucorrupt
258 @c malloc @ascuheap @acsmem
259 @c strdup @ascuheap @acsmem
260 @c _nl_intern_locale_data @ascuheap @acsmem
261 @c malloc @ascuheap @acsmem
262 @c free @ascuheap @acsmem
263 @c _nl_expand_alias @ascuheap @asulock @acsmem @acsfd @aculock
264 @c libc_lock_lock @asulock @aculock
268 @c read_alias_file @ascuheap @asulock @acsmem @acsfd @aculock
269 @c fopen @ascuheap @asulock @acsmem @acsfd @aculock
273 @c isspace ok (locale mutex is locked)
274 @c extend_alias_table @ascuheap @acsmem
275 @c realloc @ascuheap @acsmem
276 @c realloc @ascuheap @acsmem
277 @c fclose @ascuheap @asulock @acsmem @acsfd @aculock
278 @c qsort @ascuheap @acsmem
280 @c libc_lock_unlock @aculock
281 @c _nl_explode_name @ascuheap @acsmem
282 @c _nl_find_language ok
283 @c _nl_normalize_codeset dup @ascuheap @acsmem
284 @c _nl_make_l10nflist @ascuheap @acsmem
285 @c malloc @ascuheap @acsmem
286 @c free @ascuheap @acsmem
287 @c __argz_stringify ok
290 @c _nl_load_locale @ascuheap @acsmem @acsfd
291 @c open_not_cancel_2 @acsfd
293 @c close_not_cancel_no_status ok
295 @c malloc @ascuheap @acsmem
296 @c read_not_cancel ok
297 @c free @ascuheap @acsmem
298 @c _nl_intern_locale_data dup @ascuheap @acsmem
300 @c __gconv_compare_alias @asuinit @ascuheap @asucorrupt @asulock @acsmem@acucorrupt @acsfd @aculock
301 @c __gconv_read_conf @asuinit @ascuheap @asucorrupt @asulock @acsmem@acucorrupt @acsfd @aculock
302 @c (libc_once-initializes gconv_cache and gconv_path_envvar; they're
303 @c never modified afterwards)
304 @c __gconv_load_cache @ascuheap @acsmem @acsfd
305 @c getenv GCONV_PATH @mtsenv
306 @c open_not_cancel @acsfd
308 @c close_not_cancel_no_status ok
310 @c malloc @ascuheap @acsmem
312 @c free @ascuheap @acsmem
314 @c __gconv_get_path @asulock @ascuheap @aculock @acsmem @acsfd
315 @c getcwd @ascuheap @acsmem @acsfd
316 @c libc_lock_lock @asulock @aculock
317 @c malloc @ascuheap @acsmem
319 @c libc_lock_unlock @aculock
320 @c read_conf_file @ascuheap @asucorrupt @asulock @acsmem @acucorrupt @acsfd @aculock
321 @c fopen @ascuheap @asulock @acsmem @acsfd @aculock
324 @c getdelim @ascuheap @asucorrupt @acsmem @acucorrupt
325 @c isspace_l ok (C locale)
327 @c isspace_l ok (C locale)
328 @c toupper_l ok (C locale)
329 @c add_alias2 dup @ascuheap @acucorrupt @acsmem
330 @c add_module @ascuheap @acsmem
331 @c isspace_l ok (C locale)
332 @c toupper_l ok (C locale)
333 @c strtol ok (@mtslocale but we hold the locale lock)
334 @c tfind __gconv_alias_db ok
335 @c __gconv_alias_compare dup ok
336 @c calloc @ascuheap @acsmem
337 @c insert_module dup @ascuheap
338 @c __tfind ok (because the tree is read only by then)
339 @c __gconv_alias_compare dup ok
340 @c insert_module @ascuheap
342 @c add_alias2 @ascuheap @acucorrupt @acsmem
343 @c detect_conflict ok, reads __gconv_modules_db
344 @c malloc @ascuheap @acsmem
345 @c tsearch __gconv_alias_db @ascuheap @acucorrupt @acsmem [exclusive tree, no @mtsrace]
346 @c __gconv_alias_compare ok
348 @c __gconv_compare_alias_cache ok
349 @c find_module_idx ok
350 @c do_lookup_alias ok
351 @c __tfind ok (because the tree is read only by then)
352 @c __gconv_alias_compare ok
353 @c strndup @ascuheap @acsmem
354 @c strcasecmp_l ok (C locale)
355 The function @code{setlocale} sets the current locale for category
356 @var{category} to @var{locale}.
358 If @var{category} is @code{LC_ALL}, this specifies the locale for all
359 purposes. The other possible values of @var{category} specify a
360 single purpose (@pxref{Locale Categories}).
362 You can also use this function to find out the current locale by passing
363 a null pointer as the @var{locale} argument. In this case,
364 @code{setlocale} returns a string that is the name of the locale
365 currently selected for category @var{category}.
367 The string returned by @code{setlocale} can be overwritten by subsequent
368 calls, so you should make a copy of the string (@pxref{Copying Strings
369 and Arrays}) if you want to save it past any further calls to
370 @code{setlocale}. (The standard library is guaranteed never to call
371 @code{setlocale} itself.)
373 You should not modify the string returned by @code{setlocale}. It might
374 be the same string that was passed as an argument in a previous call to
375 @code{setlocale}. One requirement is that the @var{category} must be
376 the same in the call the string was returned and the one when the string
377 is passed in as @var{locale} parameter.
379 When you read the current locale for category @code{LC_ALL}, the value
380 encodes the entire combination of selected locales for all categories.
381 If you specify the same ``locale name'' with @code{LC_ALL} in a
382 subsequent call to @code{setlocale}, it restores the same combination
383 of locale selections.
385 To be sure you can use the returned string encoding the currently selected
386 locale at a later time, you must make a copy of the string. It is not
387 guaranteed that the returned pointer remains valid over time.
389 When the @var{locale} argument is not a null pointer, the string returned
390 by @code{setlocale} reflects the newly-modified locale.
392 If you specify an empty string for @var{locale}, this means to read the
393 appropriate environment variable and use its value to select the locale
396 If a nonempty string is given for @var{locale}, then the locale of that
397 name is used if possible.
399 The effective locale name (either the second argument to
400 @code{setlocale}, or if the argument is an empty string, the name
401 obtained from the process environment) must be a valid locale name.
404 If you specify an invalid locale name, @code{setlocale} returns a null
405 pointer and leaves the current locale unchanged.
408 Here is an example showing how you might use @code{setlocale} to
409 temporarily switch to a new locale.
418 with_other_locale (char *new_locale,
419 void (*subroutine) (int),
422 char *old_locale, *saved_locale;
424 /* @r{Get the name of the current locale.} */
425 old_locale = setlocale (LC_ALL, NULL);
427 /* @r{Copy the name so it won't be clobbered by @code{setlocale}.} */
428 saved_locale = strdup (old_locale);
429 if (saved_locale == NULL)
430 fatal ("Out of memory");
432 /* @r{Now change the locale and do some stuff with it.} */
433 setlocale (LC_ALL, new_locale);
434 (*subroutine) (argument);
436 /* @r{Restore the original locale.} */
437 setlocale (LC_ALL, saved_locale);
442 @strong{Portability Note:} Some @w{ISO C} systems may define additional
443 locale categories, and future versions of the library will do so. For
444 portability, assume that any symbol beginning with @samp{LC_} might be
445 defined in @file{locale.h}.
447 @node Standard Locales, Locale Names, Setting the Locale, Locales
448 @section Standard Locales
450 The only locale names you can count on finding on all operating systems
451 are these three standard ones:
455 This is the standard C locale. The attributes and behavior it provides
456 are specified in the @w{ISO C} standard. When your program starts up, it
457 initially uses this locale by default.
460 This is the standard POSIX locale. Currently, it is an alias for the
464 The empty name says to select a locale based on environment variables.
465 @xref{Locale Categories}.
468 Defining and installing named locales is normally a responsibility of
469 the system administrator at your site (or the person who installed
470 @theglibc{}). It is also possible for the user to create private
471 locales. All this will be discussed later when describing the tool to
473 @comment (@pxref{Building Locale Files}).
475 If your program needs to use something other than the @samp{C} locale,
476 it will be more portable if you use whatever locale the user specifies
477 with the environment, rather than trying to specify some non-standard
478 locale explicitly by name. Remember, different machines might have
479 different sets of locales installed.
481 @node Locale Names, Locale Information, Standard Locales, Locales
482 @section Locale Names
484 The following command prints a list of locales supported by the
492 @strong{Portability Note:} With the notable exception of the standard
493 locale names @samp{C} and @samp{POSIX}, locale names are
496 Most locale names follow XPG syntax and consist of up to four parts:
499 @var{language}[_@var{territory}[.@var{codeset}]][@@@var{modifier}]
502 Beside the first part, all of them are allowed to be missing. If the
503 full specified locale is not found, less specific ones are looked for.
504 The various parts will be stripped off, in the following order:
517 For example, the locale name @samp{de_AT.iso885915@@euro} denotes a
518 German-language locale for use in Austria, using the ISO-8859-15
519 (Latin-9) character set, and with the Euro as the currency symbol.
521 In addition to locale names which follow XPG syntax, systems may
522 provide aliases such as @samp{german}. Both categories of names must
523 not contain the slash character @samp{/}.
525 If the locale name starts with a slash @samp{/}, it is treated as a
526 path relative to the configured locale directories; see @code{LOCPATH}
527 below. The specified path must not contain a component @samp{..}, or
528 the name is invalid, and @code{setlocale} will fail.
530 @strong{Portability Note:} POSIX suggests that if a locale name starts
531 with a slash @samp{/}, it is resolved as an absolute path. However,
532 @theglibc{} treats it as a relative path under the directories listed
533 in @code{LOCPATH} (or the default locale directory if @code{LOCPATH}
536 Locale names which are longer than an implementation-defined limit are
537 invalid and cause @code{setlocale} to fail.
539 As a special case, locale names used with @code{LC_ALL} can combine
540 several locales, reflecting different locale settings for different
541 categories. For example, you might want to use a U.S. locale with ISO
542 A4 paper format, so you set @code{LANG} to @samp{en_US.UTF-8}, and
543 @code{LC_PAPER} to @samp{de_DE.UTF-8}. In this case, the
544 @code{LC_ALL}-style combined locale name is
547 LC_CTYPE=en_US.UTF-8;LC_TIME=en_US.UTF-8;LC_PAPER=de_DE.UTF-8;@dots{}
550 followed by other category settings not shown here.
553 The path used for finding locale data can be set using the
554 @code{LOCPATH} environment variable. This variable lists the
555 directories in which to search for locale definitions, separated by a
558 The default path for finding locale data is system specific. A typical
559 value for the @code{LOCPATH} default is:
565 The value of @code{LOCPATH} is ignored by privileged programs for
566 security reasons, and only the default directory is used.
568 @node Locale Information, Formatting Numbers, Locale Names, Locales
569 @section Accessing Locale Information
571 There are several ways to access locale information. The simplest
572 way is to let the C library itself do the work. Several of the
573 functions in this library implicitly access the locale data, and use
574 what information is provided by the currently selected locale. This is
575 how the locale model is meant to work normally.
577 As an example take the @code{strftime} function, which is meant to nicely
578 format date and time information (@pxref{Formatting Calendar Time}).
579 Part of the standard information contained in the @code{LC_TIME}
580 category is the names of the months. Instead of requiring the
581 programmer to take care of providing the translations the
582 @code{strftime} function does this all by itself. @code{%A}
583 in the format string is replaced by the appropriate weekday
584 name of the locale currently selected by @code{LC_TIME}. This is an
585 easy example, and wherever possible functions do things automatically
588 But there are quite often situations when there is simply no function
589 to perform the task, or it is simply not possible to do the work
590 automatically. For these cases it is necessary to access the
591 information in the locale directly. To do this the C library provides
592 two functions: @code{localeconv} and @code{nl_langinfo}. The former is
593 part of @w{ISO C} and therefore portable, but has a brain-damaged
594 interface. The second is part of the Unix interface and is portable in
595 as far as the system follows the Unix standards.
598 * The Lame Way to Locale Data:: ISO C's @code{localeconv}.
599 * The Elegant and Fast Way:: X/Open's @code{nl_langinfo}.
602 @node The Lame Way to Locale Data, The Elegant and Fast Way, ,Locale Information
603 @subsection @code{localeconv}: It is portable but @dots{}
605 Together with the @code{setlocale} function the @w{ISO C} people
606 invented the @code{localeconv} function. It is a masterpiece of poor
607 design. It is expensive to use, not extensible, and not generally
608 usable as it provides access to only @code{LC_MONETARY} and
609 @code{LC_NUMERIC} related information. Nevertheless, if it is
610 applicable to a given situation it should be used since it is very
611 portable. The function @code{strfmon} formats monetary amounts
612 according to the selected locale using this information.
614 @cindex monetary value formatting
615 @cindex numeric value formatting
617 @deftypefun {struct lconv *} localeconv (void)
618 @standards{ISO, locale.h}
619 @safety{@prelim{}@mtunsafe{@mtasurace{:localeconv} @mtslocale{}}@asunsafe{}@acsafe{}}
620 @c This function reads from multiple components of the locale object,
621 @c without synchronization, while writing to the static buffer it uses
622 @c as the return value.
623 The @code{localeconv} function returns a pointer to a structure whose
624 components contain information about how numeric and monetary values
625 should be formatted in the current locale.
627 You should not modify the structure or its contents. The structure might
628 be overwritten by subsequent calls to @code{localeconv}, or by calls to
629 @code{setlocale}, but no other function in the library overwrites this
633 @deftp {Data Type} {struct lconv}
634 @standards{ISO, locale.h}
635 @code{localeconv}'s return value is of this data type. Its elements are
636 described in the following subsections.
639 If a member of the structure @code{struct lconv} has type @code{char},
640 and the value is @code{CHAR_MAX}, it means that the current locale has
641 no value for that parameter.
644 * General Numeric:: Parameters for formatting numbers and
646 * Currency Symbol:: How to print the symbol that identifies an
647 amount of money (e.g. @samp{$}).
648 * Sign of Money Amount:: How to print the (positive or negative) sign
649 for a monetary amount, if one exists.
652 @node General Numeric, Currency Symbol, , The Lame Way to Locale Data
653 @subsubsection Generic Numeric Formatting Parameters
655 These are the standard members of @code{struct lconv}; there may be
659 @item char *decimal_point
660 @itemx char *mon_decimal_point
661 These are the decimal-point separators used in formatting non-monetary
662 and monetary quantities, respectively. In the @samp{C} locale, the
663 value of @code{decimal_point} is @code{"."}, and the value of
664 @code{mon_decimal_point} is @code{""}.
665 @cindex decimal-point separator
667 @item char *thousands_sep
668 @itemx char *mon_thousands_sep
669 These are the separators used to delimit groups of digits to the left of
670 the decimal point in formatting non-monetary and monetary quantities,
671 respectively. In the @samp{C} locale, both members have a value of
672 @code{""} (the empty string).
675 @itemx char *mon_grouping
676 These are strings that specify how to group the digits to the left of
677 the decimal point. @code{grouping} applies to non-monetary quantities
678 and @code{mon_grouping} applies to monetary quantities. Use either
679 @code{thousands_sep} or @code{mon_thousands_sep} to separate the digit
681 @cindex grouping of digits
683 Each member of these strings is to be interpreted as an integer value of
684 type @code{char}. Successive numbers (from left to right) give the
685 sizes of successive groups (from right to left, starting at the decimal
686 point.) The last member is either @code{0}, in which case the previous
687 member is used over and over again for all the remaining groups, or
688 @code{CHAR_MAX}, in which case there is no more grouping---or, put
689 another way, any remaining digits form one large group without
692 For example, if @code{grouping} is @code{"\04\03\02"}, the correct
693 grouping for the number @code{123456787654321} is @samp{12}, @samp{34},
694 @samp{56}, @samp{78}, @samp{765}, @samp{4321}. This uses a group of 4
695 digits at the end, preceded by a group of 3 digits, preceded by groups
696 of 2 digits (as many as needed). With a separator of @samp{,}, the
697 number would be printed as @samp{12,34,56,78,765,4321}.
699 A value of @code{"\03"} indicates repeated groups of three digits, as
700 normally used in the U.S.
702 In the standard @samp{C} locale, both @code{grouping} and
703 @code{mon_grouping} have a value of @code{""}. This value specifies no
706 @item char int_frac_digits
707 @itemx char frac_digits
708 These are small integers indicating how many fractional digits (to the
709 right of the decimal point) should be displayed in a monetary value in
710 international and local formats, respectively. (Most often, both
711 members have the same value.)
713 In the standard @samp{C} locale, both of these members have the value
714 @code{CHAR_MAX}, meaning ``unspecified''. The ISO standard doesn't say
715 what to do when you find this value; we recommend printing no
716 fractional digits. (This locale also specifies the empty string for
717 @code{mon_decimal_point}, so printing any fractional digits would be
721 @node Currency Symbol, Sign of Money Amount, General Numeric, The Lame Way to Locale Data
722 @subsubsection Printing the Currency Symbol
723 @cindex currency symbols
725 These members of the @code{struct lconv} structure specify how to print
726 the symbol to identify a monetary value---the international analog of
727 @samp{$} for US dollars.
729 Each country has two standard currency symbols. The @dfn{local currency
730 symbol} is used commonly within the country, while the
731 @dfn{international currency symbol} is used internationally to refer to
732 that country's currency when it is necessary to indicate the country
735 For example, many countries use the dollar as their monetary unit, and
736 when dealing with international currencies it's important to specify
737 that one is dealing with (say) Canadian dollars instead of U.S. dollars
738 or Australian dollars. But when the context is known to be Canada,
739 there is no need to make this explicit---dollar amounts are implicitly
740 assumed to be in Canadian dollars.
743 @item char *currency_symbol
744 The local currency symbol for the selected locale.
746 In the standard @samp{C} locale, this member has a value of @code{""}
747 (the empty string), meaning ``unspecified''. The ISO standard doesn't
748 say what to do when you find this value; we recommend you simply print
749 the empty string as you would print any other string pointed to by this
752 @item char *int_curr_symbol
753 The international currency symbol for the selected locale.
755 The value of @code{int_curr_symbol} should normally consist of a
756 three-letter abbreviation determined by the international standard
757 @cite{ISO 4217 Codes for the Representation of Currency and Funds},
758 followed by a one-character separator (often a space).
760 In the standard @samp{C} locale, this member has a value of @code{""}
761 (the empty string), meaning ``unspecified''. We recommend you simply print
762 the empty string as you would print any other string pointed to by this
765 @item char p_cs_precedes
766 @itemx char n_cs_precedes
767 @itemx char int_p_cs_precedes
768 @itemx char int_n_cs_precedes
769 These members are @code{1} if the @code{currency_symbol} or
770 @code{int_curr_symbol} strings should precede the value of a monetary
771 amount, or @code{0} if the strings should follow the value. The
772 @code{p_cs_precedes} and @code{int_p_cs_precedes} members apply to
773 positive amounts (or zero), and the @code{n_cs_precedes} and
774 @code{int_n_cs_precedes} members apply to negative amounts.
776 In the standard @samp{C} locale, all of these members have a value of
777 @code{CHAR_MAX}, meaning ``unspecified''. The ISO standard doesn't say
778 what to do when you find this value. We recommend printing the
779 currency symbol before the amount, which is right for most countries.
780 In other words, treat all nonzero values alike in these members.
782 The members with the @code{int_} prefix apply to the
783 @code{int_curr_symbol} while the other two apply to
784 @code{currency_symbol}.
786 @item char p_sep_by_space
787 @itemx char n_sep_by_space
788 @itemx char int_p_sep_by_space
789 @itemx char int_n_sep_by_space
790 These members are @code{1} if a space should appear between the
791 @code{currency_symbol} or @code{int_curr_symbol} strings and the
792 amount, or @code{0} if no space should appear. The
793 @code{p_sep_by_space} and @code{int_p_sep_by_space} members apply to
794 positive amounts (or zero), and the @code{n_sep_by_space} and
795 @code{int_n_sep_by_space} members apply to negative amounts.
797 In the standard @samp{C} locale, all of these members have a value of
798 @code{CHAR_MAX}, meaning ``unspecified''. The ISO standard doesn't say
799 what you should do when you find this value; we suggest you treat it as
800 1 (print a space). In other words, treat all nonzero values alike in
803 The members with the @code{int_} prefix apply to the
804 @code{int_curr_symbol} while the other two apply to
805 @code{currency_symbol}. There is one specialty with the
806 @code{int_curr_symbol}, though. Since all legal values contain a space
807 at the end of the string one either prints this space (if the currency
808 symbol must appear in front and must be separated) or one has to avoid
809 printing this character at all (especially when at the end of the
813 @node Sign of Money Amount, , Currency Symbol, The Lame Way to Locale Data
814 @subsubsection Printing the Sign of a Monetary Amount
816 These members of the @code{struct lconv} structure specify how to print
817 the sign (if any) of a monetary value.
820 @item char *positive_sign
821 @itemx char *negative_sign
822 These are strings used to indicate positive (or zero) and negative
823 monetary quantities, respectively.
825 In the standard @samp{C} locale, both of these members have a value of
826 @code{""} (the empty string), meaning ``unspecified''.
828 The ISO standard doesn't say what to do when you find this value; we
829 recommend printing @code{positive_sign} as you find it, even if it is
830 empty. For a negative value, print @code{negative_sign} as you find it
831 unless both it and @code{positive_sign} are empty, in which case print
832 @samp{-} instead. (Failing to indicate the sign at all seems rather
835 @item char p_sign_posn
836 @itemx char n_sign_posn
837 @itemx char int_p_sign_posn
838 @itemx char int_n_sign_posn
839 These members are small integers that indicate how to
840 position the sign for nonnegative and negative monetary quantities,
841 respectively. (The string used for the sign is what was specified with
842 @code{positive_sign} or @code{negative_sign}.) The possible values are
847 The currency symbol and quantity should be surrounded by parentheses.
850 Print the sign string before the quantity and currency symbol.
853 Print the sign string after the quantity and currency symbol.
856 Print the sign string right before the currency symbol.
859 Print the sign string right after the currency symbol.
862 ``Unspecified''. Both members have this value in the standard
866 The ISO standard doesn't say what you should do when the value is
867 @code{CHAR_MAX}. We recommend you print the sign after the currency
870 The members with the @code{int_} prefix apply to the
871 @code{int_curr_symbol} while the other two apply to
872 @code{currency_symbol}.
875 @node The Elegant and Fast Way, , The Lame Way to Locale Data, Locale Information
876 @subsection Pinpoint Access to Locale Data
878 When writing the X/Open Portability Guide the authors realized that the
879 @code{localeconv} function is not enough to provide reasonable access to
880 locale information. The information which was meant to be available
881 in the locale (as later specified in the POSIX.1 standard) requires more
882 ways to access it. Therefore the @code{nl_langinfo} function
885 @deftypefun {char *} nl_langinfo (nl_item @var{item})
886 @standards{XOPEN, langinfo.h}
887 @safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
888 @c It calls _nl_langinfo_l with the current locale, which returns a
889 @c pointer into constant strings defined in locale data structures.
890 The @code{nl_langinfo} function can be used to access individual
891 elements of the locale categories. Unlike the @code{localeconv}
892 function, which returns all the information, @code{nl_langinfo}
893 lets the caller select what information it requires. This is very
894 fast and it is not a problem to call this function multiple times.
896 A second advantage is that in addition to the numeric and monetary
897 formatting information, information from the
898 @code{LC_TIME} and @code{LC_MESSAGES} categories is available.
901 The type @code{nl_item} is defined in @file{nl_types.h}. The argument
902 @var{item} is a numeric value defined in the header @file{langinfo.h}.
903 The X/Open standard defines the following values:
907 @code{nl_langinfo} returns a string with the name of the coded character
908 set used in the selected locale.
917 @code{nl_langinfo} returns the abbreviated weekday name. @code{ABDAY_1}
918 corresponds to Sunday.
926 Similar to @code{ABDAY_1}, etc.,@: but here the return value is the
927 unabbreviated weekday name.
940 The return value is the abbreviated name of the month, in the
941 grammatical form used when the month forms part of a complete date.
942 @code{ABMON_1} corresponds to January.
955 Similar to @code{ABMON_1}, etc.,@: but here the month names are not
956 abbreviated. Here the first value @code{MON_1} also corresponds to
970 Similar to @code{MON_1}, etc.,@: but here the month names are in the
971 grammatical form used when the month is named by itself. The
972 @code{strftime} functions use these month names for the conversion
973 specifier @code{%OB} (@pxref{Formatting Calendar Time}).
975 Note that not all languages need two different forms of the month names,
976 so the strings returned for @code{MON_@dots{}} and @code{ALTMON_@dots{}}
977 may or may not be the same, depending on the locale.
979 @strong{NB:} @code{ABALTMON_@dots{}} constants corresponding to the
980 @code{%Ob} conversion specifier are not currently provided, but are
981 expected to be in a future release. In the meantime, it is possible
982 to use @code{_NL_ABALTMON_@dots{}}.
985 The return values are strings which can be used in the representation of time
986 as an hour from 1 to 12 plus an am/pm specifier.
988 Note that in locales which do not use this time representation
989 these strings might be empty, in which case the am/pm format
990 cannot be used at all.
992 The return value can be used as a format string for @code{strftime} to
993 represent time and date in a locale-specific way.
995 The return value can be used as a format string for @code{strftime} to
996 represent a date in a locale-specific way.
998 The return value can be used as a format string for @code{strftime} to
999 represent time in a locale-specific way.
1001 The return value can be used as a format string for @code{strftime} to
1002 represent time in the am/pm format.
1004 Note that if the am/pm format does not make any sense for the
1005 selected locale, the return value might be the same as the one for
1008 The return value represents the era used in the current locale.
1010 Most locales do not define this value. An example of a locale which
1011 does define this value is the Japanese one. In Japan, the traditional
1012 representation of dates includes the name of the era corresponding to
1013 the then-emperor's reign.
1015 Normally it should not be necessary to use this value directly.
1016 Specifying the @code{E} modifier in their format strings causes the
1017 @code{strftime} functions to use this information. The format of the
1018 returned string is not specified, and therefore you should not assume
1019 knowledge of it on different systems.
1021 The return value gives the year in the relevant era of the locale.
1022 As for @code{ERA} it should not be necessary to use this value directly.
1024 This return value can be used as a format string for @code{strftime} to
1025 represent dates and times in a locale-specific era-based way.
1027 This return value can be used as a format string for @code{strftime} to
1028 represent a date in a locale-specific era-based way.
1030 This return value can be used as a format string for @code{strftime} to
1031 represent time in a locale-specific era-based way.
1033 The return value is a representation of up to @math{100} values used to
1034 represent the values @math{0} to @math{99}. As for @code{ERA} this
1035 value is not intended to be used directly, but instead indirectly
1036 through the @code{strftime} function. When the modifier @code{O} is
1037 used in a format which would otherwise use numerals to represent hours,
1038 minutes, seconds, weekdays, months, or weeks, the appropriate value for
1039 the locale is used instead.
1040 @item INT_CURR_SYMBOL
1041 The same as the value returned by @code{localeconv} in the
1042 @code{int_curr_symbol} element of the @code{struct lconv}.
1043 @item CURRENCY_SYMBOL
1045 The same as the value returned by @code{localeconv} in the
1046 @code{currency_symbol} element of the @code{struct lconv}.
1048 @code{CRNCYSTR} is a deprecated alias still required by Unix98.
1049 @item MON_DECIMAL_POINT
1050 The same as the value returned by @code{localeconv} in the
1051 @code{mon_decimal_point} element of the @code{struct lconv}.
1052 @item MON_THOUSANDS_SEP
1053 The same as the value returned by @code{localeconv} in the
1054 @code{mon_thousands_sep} element of the @code{struct lconv}.
1056 The same as the value returned by @code{localeconv} in the
1057 @code{mon_grouping} element of the @code{struct lconv}.
1059 The same as the value returned by @code{localeconv} in the
1060 @code{positive_sign} element of the @code{struct lconv}.
1062 The same as the value returned by @code{localeconv} in the
1063 @code{negative_sign} element of the @code{struct lconv}.
1064 @item INT_FRAC_DIGITS
1065 The same as the value returned by @code{localeconv} in the
1066 @code{int_frac_digits} element of the @code{struct lconv}.
1068 The same as the value returned by @code{localeconv} in the
1069 @code{frac_digits} element of the @code{struct lconv}.
1071 The same as the value returned by @code{localeconv} in the
1072 @code{p_cs_precedes} element of the @code{struct lconv}.
1073 @item P_SEP_BY_SPACE
1074 The same as the value returned by @code{localeconv} in the
1075 @code{p_sep_by_space} element of the @code{struct lconv}.
1077 The same as the value returned by @code{localeconv} in the
1078 @code{n_cs_precedes} element of the @code{struct lconv}.
1079 @item N_SEP_BY_SPACE
1080 The same as the value returned by @code{localeconv} in the
1081 @code{n_sep_by_space} element of the @code{struct lconv}.
1083 The same as the value returned by @code{localeconv} in the
1084 @code{p_sign_posn} element of the @code{struct lconv}.
1086 The same as the value returned by @code{localeconv} in the
1087 @code{n_sign_posn} element of the @code{struct lconv}.
1089 @item INT_P_CS_PRECEDES
1090 The same as the value returned by @code{localeconv} in the
1091 @code{int_p_cs_precedes} element of the @code{struct lconv}.
1092 @item INT_P_SEP_BY_SPACE
1093 The same as the value returned by @code{localeconv} in the
1094 @code{int_p_sep_by_space} element of the @code{struct lconv}.
1095 @item INT_N_CS_PRECEDES
1096 The same as the value returned by @code{localeconv} in the
1097 @code{int_n_cs_precedes} element of the @code{struct lconv}.
1098 @item INT_N_SEP_BY_SPACE
1099 The same as the value returned by @code{localeconv} in the
1100 @code{int_n_sep_by_space} element of the @code{struct lconv}.
1101 @item INT_P_SIGN_POSN
1102 The same as the value returned by @code{localeconv} in the
1103 @code{int_p_sign_posn} element of the @code{struct lconv}.
1104 @item INT_N_SIGN_POSN
1105 The same as the value returned by @code{localeconv} in the
1106 @code{int_n_sign_posn} element of the @code{struct lconv}.
1110 The same as the value returned by @code{localeconv} in the
1111 @code{decimal_point} element of the @code{struct lconv}.
1113 The name @code{RADIXCHAR} is a deprecated alias still used in Unix98.
1116 The same as the value returned by @code{localeconv} in the
1117 @code{thousands_sep} element of the @code{struct lconv}.
1119 The name @code{THOUSEP} is a deprecated alias still used in Unix98.
1121 The same as the value returned by @code{localeconv} in the
1122 @code{grouping} element of the @code{struct lconv}.
1124 The return value is a regular expression which can be used with the
1125 @code{regex} function to recognize a positive response to a yes/no
1126 question. @Theglibc{} provides the @code{rpmatch} function for
1127 easier handling in applications.
1129 The return value is a regular expression which can be used with the
1130 @code{regex} function to recognize a negative response to a yes/no
1133 The return value is a locale-specific translation of the positive response
1134 to a yes/no question.
1136 Using this value is deprecated since it is a very special case of
1137 message translation, and is better handled by the message
1138 translation functions (@pxref{Message Translation}).
1140 The use of this symbol is deprecated. Instead message translation
1143 The return value is a locale-specific translation of the negative response
1144 to a yes/no question. What is said for @code{YESSTR} is also true here.
1146 The use of this symbol is deprecated. Instead message translation
1150 The file @file{langinfo.h} defines a lot more symbols but none of them
1151 are official. Using them is not portable, and the format of the
1152 return values might change. Therefore we recommended you not use
1155 Note that the return value for any valid argument can be used
1156 in all situations (with the possible exception of the am/pm time formatting
1157 codes). If the user has not selected any locale for the
1158 appropriate category, @code{nl_langinfo} returns the information from the
1159 @code{"C"} locale. It is therefore possible to use this function as
1160 shown in the example below.
1162 If the argument @var{item} is not valid, a pointer to an empty string is
1166 An example of @code{nl_langinfo} usage is a function which has to
1167 print a given date and time in a locale-specific way. At first one
1168 might think that, since @code{strftime} internally uses the locale
1169 information, writing something like the following is enough:
1173 i18n_time_n_data (char *s, size_t len, const struct tm *tp)
1175 return strftime (s, len, "%X %D", tp);
1179 The format contains no weekday or month names and therefore is
1180 internationally usable. Wrong! The output produced is something like
1181 @code{"hh:mm:ss MM/DD/YY"}. This format is only recognizable in the
1182 USA. Other countries use different formats. Therefore the function
1183 should be rewritten like this:
1187 i18n_time_n_data (char *s, size_t len, const struct tm *tp)
1189 return strftime (s, len, nl_langinfo (D_T_FMT), tp);
1193 Now it uses the date and time format of the locale
1194 selected when the program runs. If the user selects the locale
1195 correctly there should never be a misunderstanding over the time and
1198 @node Formatting Numbers, Yes-or-No Questions, Locale Information, Locales
1199 @section A dedicated function to format numbers
1201 We have seen that the structure returned by @code{localeconv} as well as
1202 the values given to @code{nl_langinfo} allow you to retrieve the various
1203 pieces of locale-specific information to format numbers and monetary
1204 amounts. We have also seen that the underlying rules are quite complex.
1206 Therefore the X/Open standards introduce a function which uses such
1207 locale information, making it easier for the user to format
1208 numbers according to these rules.
1210 @deftypefun ssize_t strfmon (char *@var{s}, size_t @var{maxsize}, const char *@var{format}, @dots{})
1211 @safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
1212 @c It (and strfmon_l) both call vstrfmon_l, which, besides accessing the
1213 @c locale object passed to it, accesses the active locale through
1214 @c isdigit (but to_digit assumes ASCII digits only). It may call
1215 @c __printf_fp (@mtslocale @ascuheap @acsmem) and guess_grouping (safe).
1216 The @code{strfmon} function is similar to the @code{strftime} function
1217 in that it takes a buffer, its size, a format string,
1218 and values to write into the buffer as text in a form specified
1219 by the format string. Like @code{strftime}, the function
1220 also returns the number of bytes written into the buffer.
1222 There are two differences: @code{strfmon} can take more than one
1223 argument, and, of course, the format specification is different. Like
1224 @code{strftime}, the format string consists of normal text, which is
1225 output as is, and format specifiers, which are indicated by a @samp{%}.
1226 Immediately after the @samp{%}, you can optionally specify various flags
1227 and formatting information before the main formatting character, in a
1228 similar way to @code{printf}:
1232 Immediately following the @samp{%} there can be one or more of the
1235 @item @samp{=@var{f}}
1236 The single byte character @var{f} is used for this field as the numeric
1237 fill character. By default this character is a space character.
1238 Filling with this character is only performed if a left precision
1239 is specified. It is not just to fill to the given field width.
1241 The number is printed without grouping the digits according to the rules
1242 of the current locale. By default grouping is enabled.
1243 @item @samp{+}, @samp{(}
1244 At most one of these flags can be used. They select which format to
1245 represent the sign of a currency amount. By default, and if
1246 @samp{+} is given, the locale equivalent of @math{+}/@math{-} is used. If
1247 @samp{(} is given, negative amounts are enclosed in parentheses. The
1248 exact format is determined by the values of the @code{LC_MONETARY}
1249 category of the locale selected at program runtime.
1251 The output will not contain the currency symbol.
1253 The output will be formatted left-justified instead of right-justified if
1254 it does not fill the entire field width.
1258 The next part of the specification is an optional field width. If no
1259 width is specified @math{0} is taken. During output, the function first
1260 determines how much space is required. If it requires at least as many
1261 characters as given by the field width, it is output using as much space
1262 as necessary. Otherwise, it is extended to use the full width by
1263 filling with the space character. The presence or absence of the
1264 @samp{-} flag determines the side at which such padding occurs. If
1265 present, the spaces are added at the right making the output
1266 left-justified, and vice versa.
1268 So far the format looks familiar, being similar to the @code{printf} and
1269 @code{strftime} formats. However, the next two optional fields
1270 introduce something new. The first one is a @samp{#} character followed
1271 by a decimal digit string. The value of the digit string specifies the
1272 number of @emph{digit} positions to the left of the decimal point (or
1273 equivalent). This does @emph{not} include the grouping character when
1274 the @samp{^} flag is not given. If the space needed to print the number
1275 does not fill the whole width, the field is padded at the left side with
1276 the fill character, which can be selected using the @samp{=} flag and by
1277 default is a space. For example, if the field width is selected as 6
1278 and the number is @math{123}, the fill character is @samp{*} the result
1279 will be @samp{***123}.
1281 The second optional field starts with a @samp{.} (period) and consists
1282 of another decimal digit string. Its value describes the number of
1283 characters printed after the decimal point. The default is selected
1284 from the current locale (@code{frac_digits}, @code{int_frac_digits}, see
1285 @pxref{General Numeric}). If the exact representation needs more digits
1286 than given by the field width, the displayed value is rounded. If the
1287 number of fractional digits is selected to be zero, no decimal point is
1290 As a GNU extension, the @code{strfmon} implementation in @theglibc{}
1291 allows an optional @samp{L} next as a format modifier. If this modifier
1292 is given, the argument is expected to be a @code{long double} instead of
1293 a @code{double} value.
1295 Finally, the last component is a format specifier. There are three
1300 Use the locale's rules for formatting an international currency value.
1302 Use the locale's rules for formatting a national currency value.
1304 Place a @samp{%} in the output. There must be no flag, width
1305 specifier or modifier given, only @samp{%%} is allowed.
1308 As for @code{printf}, the function reads the format string
1309 from left to right and uses the values passed to the function following
1310 the format string. The values are expected to be either of type
1311 @code{double} or @code{long double}, depending on the presence of the
1312 modifier @samp{L}. The result is stored in the buffer pointed to by
1313 @var{s}. At most @var{maxsize} characters are stored.
1315 The return value of the function is the number of characters stored in
1316 @var{s}, including the terminating @code{NULL} byte. If the number of
1317 characters stored would exceed @var{maxsize}, the function returns
1318 @math{-1} and the content of the buffer @var{s} is unspecified. In this
1319 case @code{errno} is set to @code{E2BIG}.
1322 A few examples should make clear how the function works. It is
1323 assumed that all the following pieces of code are executed in a program
1324 which uses the USA locale (@code{en_US}). The simplest
1325 form of the format is this:
1328 strfmon (buf, 100, "@@%n@@%n@@%n@@", 123.45, -567.89, 12345.678);
1332 The output produced is
1334 "@@$123.45@@-$567.89@@$12,345.68@@"
1337 We can notice several things here. First, the widths of the output
1338 numbers are different. We have not specified a width in the format
1339 string, and so this is no wonder. Second, the third number is printed
1340 using thousands separators. The thousands separator for the
1341 @code{en_US} locale is a comma. The number is also rounded.
1342 @math{.678} is rounded to @math{.68} since the format does not specify a
1343 precision and the default value in the locale is @math{2}. Finally,
1344 note that the national currency symbol is printed since @samp{%n} was
1345 used, not @samp{i}. The next example shows how we can align the output.
1348 strfmon (buf, 100, "@@%=*11n@@%=*11n@@%=*11n@@", 123.45, -567.89, 12345.678);
1352 The output this time is:
1355 "@@ $123.45@@ -$567.89@@ $12,345.68@@"
1358 Two things stand out. Firstly, all fields have the same width (eleven
1359 characters) since this is the width given in the format and since no
1360 number required more characters to be printed. The second important
1361 point is that the fill character is not used. This is correct since the
1362 white space was not used to achieve a precision given by a @samp{#}
1363 modifier, but instead to fill to the given width. The difference
1364 becomes obvious if we now add a width specification.
1367 strfmon (buf, 100, "@@%=*11#5n@@%=*11#5n@@%=*11#5n@@",
1368 123.45, -567.89, 12345.678);
1375 "@@ $***123.45@@-$***567.89@@ $12,456.68@@"
1378 Here we can see that all the currency symbols are now aligned, and that
1379 the space between the currency sign and the number is filled with the
1380 selected fill character. Note that although the width is selected to be
1381 @math{5} and @math{123.45} has three digits left of the decimal point,
1382 the space is filled with three asterisks. This is correct since, as
1383 explained above, the width does not include the positions used to store
1384 thousands separators. One last example should explain the remaining
1388 strfmon (buf, 100, "@@%=0(16#5.3i@@%=0(16#5.3i@@%=0(16#5.3i@@",
1389 123.45, -567.89, 12345.678);
1393 This rather complex format string produces the following output:
1396 "@@ USD 000123,450 @@(USD 000567.890)@@ USD 12,345.678 @@"
1399 The most noticeable change is the alternative way of representing
1400 negative numbers. In financial circles this is often done using
1401 parentheses, and this is what the @samp{(} flag selected. The fill
1402 character is now @samp{0}. Note that this @samp{0} character is not
1403 regarded as a numeric zero, and therefore the first and second numbers
1404 are not printed using a thousands separator. Since we used the format
1405 specifier @samp{i} instead of @samp{n}, the international form of the
1406 currency symbol is used. This is a four letter string, in this case
1407 @code{"USD "}. The last point is that since the precision right of the
1408 decimal point is selected to be three, the first and second numbers are
1409 printed with an extra zero at the end and the third number is printed
1412 @node Yes-or-No Questions, , Formatting Numbers , Locales
1413 @section Yes-or-No Questions
1415 Some non GUI programs ask a yes-or-no question. If the messages
1416 (especially the questions) are translated into foreign languages, be
1417 sure that you localize the answers too. It would be very bad habit to
1418 ask a question in one language and request the answer in another, often
1421 @Theglibc{} contains @code{rpmatch} to give applications easy
1422 access to the corresponding locale definitions.
1424 @deftypefun int rpmatch (const char *@var{response})
1425 @standards{GNU, stdlib.h}
1426 @safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{} @asulock{} @ascudlopen{}}@acunsafe{@acucorrupt{} @aculock{} @acsmem{} @acsfd{}}}
1427 @c Calls nl_langinfo with YESEXPR and NOEXPR, triggering @mtslocale but
1428 @c it's regcomp and regexec that bring in all of the safety issues.
1429 @c regfree is also called, but it doesn't introduce any further issues.
1430 The function @code{rpmatch} checks the string in @var{response} for whether
1431 or not it is a correct yes-or-no answer and if yes, which one. The
1432 check uses the @code{YESEXPR} and @code{NOEXPR} data in the
1433 @code{LC_MESSAGES} category of the currently selected locale. The
1434 return value is as follows:
1438 The user entered an affirmative answer.
1441 The user entered a negative answer.
1444 The answer matched neither the @code{YESEXPR} nor the @code{NOEXPR}
1448 This function is not standardized but available beside in @theglibc{} at
1449 least also in the IBM AIX library.
1453 This function would normally be used like this:
1457 /* @r{Use a safe default.} */
1460 fputs (gettext ("Do you really want to do this? "), stdout);
1462 /* @r{Prepare the @code{getline} call.} */
1465 while (getline (&line, &len, stdin) >= 0)
1467 /* @r{Check the response.} */
1468 int res = rpmatch (line);
1471 /* @r{We got a definitive answer.} */
1477 /* @r{Free what @code{getline} allocated.} */
1481 Note that the loop continues until a read error is detected or until a
1482 definitive (positive or negative) answer is read.