Lines Matching refs:this
74 (The C library doesn't yet help you implement this.)
85 output in the user's favorite language is to program this more or less
177 this environment variable overwrites all selections by the other
182 If this environment variable is defined, its value specifies the locale
193 German, and if this also fails to use English. This is
195 this GNU extension see @ref{Using gettextized software}.
221 The symbols in this section are defined in the header file @file{locale.h}.
227 @c ought to be MT-Safe, so we're ruling out the use of this function
358 If @var{category} is @code{LC_ALL}, this specifies the locale for all
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,
392 If you specify an empty string for @var{locale}, this means to read the
457 initially uses this locale by default.
471 locales. All this will be discussed later when describing the tool to
543 @code{LC_PAPER} to @samp{de_DE.UTF-8}. In this case, the
573 functions in this library implicitly access the locale data, and use
582 @code{strftime} function does this all by itself. @code{%A}
586 in this way.
591 information in the locale directly. To do this the C library provides
612 according to the selected locale using this information.
629 @code{setlocale}, but no other function in the library overwrites this
635 @code{localeconv}'s return value is of this data type. Its elements are
715 what to do when you find this value; we recommend printing no
739 there is no need to make this explicit---dollar amounts are implicitly
746 In the standard @samp{C} locale, this member has a value of @code{""}
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
760 In the standard @samp{C} locale, this member has a value of @code{""}
762 the empty string as you would print any other string pointed to by this
778 what to do when you find this value. We recommend printing the
799 what you should do when you find this value; we suggest you treat it as
807 at the end of the string one either prints this space (if the currency
809 printing this character at all (especially when at the end of the
828 The ISO standard doesn't say what to do when you find this value; we
862 ``Unspecified''. Both members have this value in the standard
894 fast and it is not a problem to call this function multiple times.
988 Note that in locales which do not use this time representation
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
1015 Normally it should not be necessary to use this value directly.
1017 @code{strftime} functions to use this information. The format of the
1022 As for @code{ERA} it should not be necessary to use this value directly.
1034 represent the values @math{0} to @math{99}. As for @code{ERA} this
1136 Using this value is deprecated since it is a very special case of
1140 The use of this symbol is deprecated. Instead message translation
1146 The use of this symbol is deprecated. Instead message translation
1159 @code{"C"} locale. It is therefore possible to use this function as
1183 should be rewritten like this:
1237 The single byte character @var{f} is used for this field as the numeric
1238 fill character. By default this character is a space character.
1239 Filling with this character is only performed if a left precision
1292 allows an optional @samp{L} next as a format modifier. If this modifier
1319 @math{-1} and the content of the buffer @var{s} is unspecified. In this
1326 form of the format is this:
1340 string, and so this is no wonder. Second, the third number is printed
1353 The output this time is:
1360 characters) since this is the width given in the format and since no
1401 negative numbers. In financial circles this is often done using
1402 parentheses, and this is what the @samp{(} flag selected. The fill
1403 character is now @samp{0}. Note that this @samp{0} character is not
1407 currency symbol is used. This is a four letter string, in this case
1454 This function would normally be used like this:
1461 fputs (gettext ("Do you really want to do this? "), stdout);