summaryrefslogtreecommitdiff
path: root/src/locale/localeconv.c
blob: f08eb872394b4422a772cf593c00bd5bdd832e74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <locale.h>
#include "nonstd/locale.h"

/** return locale-specific information **/
struct lconv * localeconv(void)
{
	/*
	RETURN_SUCCESS(a pointer to a filled-in STRUCTDEF(lconv) for the current locale);
	*/
	return __libc(LCONV);
}

/***
fills in a STRUCTDEF(lconv) in the current locale for
use in formatting numbers and monetary values.
***/

/*
LC_MONETARY
LC_NUMERIC
*/
/*
STDC(1)
*/