HPlogo HP-UX Reference Volume 4 of 5 > l

localeconv(3C)

» 

Technical documentation

Complete book in PDF

 » Table of Contents

 » Index

NAME

localeconv() — query the numeric formatting conventions of the current locale

SYNOPSIS

#include <locale.h>

struct lconv *localeconv(void);

DESCRIPTION

The localeconv() function sets the components of an object of type struct lconv (defined in <locale.h>) with values appropriate for the formatting of numeric quantities (monetary and otherwise) according to the rules of the program's current locale (see setlocale(3C)).

The members of the structure with type char * are strings, any of which (except decimal_point) can point to "" (the empty string) to indicate that the value is not available in the current locale or is of zero length. The members with type char are nonnegative numbers, any of which can be CHAR_MAX (defined in <limits.h>) to indicate that the value is not available in the current locale. The members include the following:

char *decimal_point

The decimal point character used to format nonmonetary quantities. This is the same value as that returned by a call to nl_langinfo() with RADIXCHAR as its argument (see nl_langinfo(3C)).

char *thousands_sep

The character used to separate groups of digits to the left of the decimal point character in formatted nonmonetary quantities. This is the same value as that returned by a call to nl_langinfo() with THOUSEP as its argument (see nl_langinfo(3C)).

char *grouping

A string where the numeric value of each byte indicates the size of each group of digits in formatted nonmonetary quantities.

char *int_curr_symbol

The international currency symbol applicable to the current locale. The first three characters contain the alphabetic international currency symbol in accordance with those specified in ISO 4217 Codes for the Representation of Currency and Funds. The fourth character (immediately preceding the null character) is the character used to separate the international currency symbol from the monetary quantity.

char *currency_symbol

The local currency symbol applicable to the current locale. This value along with positioning information is returned by a call to nl_langinfo() with CRNCYSTR as its argument (see nl_langinfo(3C)).

char *mon_decimal_point

The decimal point used to format monetary quantities.

char *mon_thousands_sep

The separator for groups of digits to the left of the decimal point in formatted monetary quantities.

char *mon_grouping

A string where the numeric value of each byte indicates the size of each group of digits in formatted monetary quantities.

char *positive_sign

The string used to indicate a nonnegative valued formatted monetary quantity.

char *negative_sign

The string used to indicate a negative valued formatted monetary quantity.

char int_frac_digits

The number of fractional digits (those to the right of the decimal point) to be displayed in an internationally formatted monetary quantity.

char frac_digits

The number of fractional digits (those to the right of the decimal point) to be displayed in a locally formatted monetary quantity.

char p_cs_precedes

Set to 1 or 0 if the currency_symbol or int_curr_symbol respectively precedes or succeeds the value for a nonnegative formatted monetary quantity.

char p_sep_by_space

Set to 1 or 0 if the currency_symbol or int_curr_symbol respectively is or is not separated by a space from the value for a nonnegative formatted monetary quantity; and set to 2 if a space separates the symbol and the sign string, if adjacent.

char n_cs_precedes

Set to 1 or 0 if the currency_symbol or int_curr_symbol respectively precedes or succeeds the value for a negative formatted monetary quantity.

char n_sep_by_space

Set to 1 or 0 if the currency_symbol or int_curr_symbol respectively is or is not separated by a space from the value for a negative formatted monetary quantity; and set to 2 if a space separates the symbol and the sign string, if adjacent.

char p_sign_posn

Set to a value indicating the positioning of the positive_sign for a nonnegative formatted monetary quantity.

char n_sign_posn

Set to a value indicating the positioning of the negative_sign for a negative formatted monetary quantity.

The numeric value of each byte of grouping and mon_grouping is interpreted according to the following:

CHAR_MAX

No further grouping is to be performed.

0

The previous byte is to be repeatedly used for the remainder of the digits.

other

The value is the number of digits that comprise the current group. The next byte is examined to determine the size of the next group of digits to the left of the current group.

The values of p_sign_posn and n_sign_posn are interpreted according to the following:

0

Parentheses surround the quantity and currency_symbol or int_curr_symbol.

1

The sign string precedes the quantity and currency_symbol or int_curr_symbol.

2

The sign string succeeds the quantity and currency_symbol or int_curr_symbol.

3

The sign string immediately precedes the currency_symbol or int_curr_symbol.

4

The sign string immediately succeeds the currency_symbol or int_curr_symbol.

localeconv() behaves as if no library function calls localeconv().

APPLICATION USAGE

localeconv() is thread-safe. It is not async-cancel-safe.

EXTERNAL INFLUENCES

Locale

The LC_NUMERIC category influences the decimal_point, thousands_sep, and grouping members of the structure referenced by the pointer returned from a call to localeconv().

The LC_MONETARY category influences all of the other members of this structure.

International Code Set Support

Single- and multibyte character code sets are supported.

RETURN VALUE

localeconv() returns a pointer to the filled-in struct lconv.

EXAMPLES

The following table illustrates the formatting used in five languages for monetary quantities.

CountryPositive formatNegative formatInternational format
en_US.iso88591$1,234.56-$1,234.56USD 1,234.56
it_IT.iso88591L.1.234-L.1.234ITL.1.234
nl_NL.iso88591F 1.234,56F -1.234,56NLG 1.234,56
no_NO.iso88591kr1.234,56kr1.234,56-NOK 1.234,56
pt_PT.iso885911,234$56-1,234$56PTE 1,234$56

For these five languages, the respective values for the monetary members of the structure returned by localeconv() are:

 en_US.it_IT.nl_NL.no_NO.pt_PT.
iso88591iso88591.iso88591iso88591iso88591
int_curr_symbolUSDITL.NLGNOKPTE
currency_symbol$L.Fkr$
mon_decimal_point."",,$
mon_thousands_sep,...,
mon_grouping\3\3\3\3\3
positive_sign""""""""""
negative_sign-----
int_frac_digits20222
frac_digits20222
p_cs_precedes11110
p_sep_by_space00100
n_cs_precedes11110
n_sep_by_space00100
p_sign_posn11111
n_sign_posn41421

WARNINGS

The structure returned by localeconv() should not be modified by the calling program. Calls to setlocale() with categories LC_ALL, LC_MONETARY, or LC_NUMERIC can overwrite the contents of the structure that localeconv() points to when it returns (see setlocale(3C)).

AUTHOR

localeconv() was developed by OSF and HP.

STANDARDS CONFORMANCE

localeconv(): AES, SVID3, XPG4, ANSI C

© Hewlett-Packard Development Company, L.P.