Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
C Library
cassert (assert.h)
cctype (ctype.h)
cerrno (errno.h)
cfloat (float.h)
ciso646 (iso646.h)
climits (limits.h)
clocale (locale.h)
cmath (math.h)
csetjmp (setjmp.h)
csignal (signal.h)
cstdarg (stdarg.h)
cstddef (stddef.h)
cstdio (stdio.h)
cstdlib (stdlib.h)
cstring (string.h)
ctime (time.h)
clocale (locale.h)
struct lconv
localeconv
setlocale


localeconv

function
<clocale>
struct lconv * localeconv (void);

Get locale formatting parameters for quantities

Retrieves the values provided in the current locale object to format parameters for quantities. These are returned in an object of the lconv structure type. See lconv for its interpretation.

Parameters

none

Return Value

A pointer to a structure object of type lconv with the corresponding values for the current locale filled in. The data pointed by this should not be modified by the program. Its data may be overriden by a further call to this same function or to setlocale with a category affecting this settings.

Example

1
2
3
4
5
6
7
8
9
10
11
12
/* localeconv example */
#include <stdio.h>
#include <locale.h>
int main ()
{
  setlocale (LC_MONETARY,"");
  struct lconv * lc;
  lc=localeconv();
  printf ("Local Currency Symbol: %s\n",lc->currency_symbol);
  printf ("International Currency Symbol: %s\n",lc->int_curr_symbol);
  return 0;
}


One possible output for this program, depending on the environment locale, could be:
Local Currency Symbol: $
International Currency Symbol: USD

See also