2 ** Copyright 2004, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
6 #ifndef __newos__libc_locale__hh__
7 #define __newos__libc_locale__hh__
10 #include <sys/types.h>
11 #include <sys/cdefs.h>
24 char *int_curr_symbol
;
25 char *currency_symbol
;
26 char *mon_decimal_point
;
27 char *mon_thousands_sep
;
50 struct lconv
*localeconv(void);
51 char *setlocale(int category
, const char *locale
);
59 #if defined(__cplusplus) && !defined(_NEWOS_NO_LIBC_COMPAT)
60 using ::std::localeconv
;
61 using ::std::setlocale
;