2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
locale.h
|
|
|
|
Values appropriate for the formatting of monetary and other
|
|
|
|
numberic quantities.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LOCALE_H_
|
|
|
|
#define _LOCALE_H_
|
|
|
|
|
|
|
|
#include "_ansi.h"
|
2016-07-24 03:40:50 +08:00
|
|
|
#include <sys/cdefs.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2012-11-01 19:51:12 +08:00
|
|
|
#define __need_NULL
|
|
|
|
#include <stddef.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
#define LC_ALL 0
|
|
|
|
#define LC_COLLATE 1
|
|
|
|
#define LC_CTYPE 2
|
|
|
|
#define LC_MONETARY 3
|
|
|
|
#define LC_NUMERIC 4
|
|
|
|
#define LC_TIME 5
|
2001-02-06 05:51:43 +08:00
|
|
|
#define LC_MESSAGES 6
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2021-11-09 11:22:27 +08:00
|
|
|
#if __POSIX_VISIBLE >= 200809 || defined (_LIBC)
|
2016-07-25 17:47:36 +08:00
|
|
|
|
2019-06-13 04:31:14 +08:00
|
|
|
#include <sys/_locale.h>
|
2016-07-23 20:19:52 +08:00
|
|
|
|
2016-07-13 22:51:33 +08:00
|
|
|
#define LC_ALL_MASK (1 << LC_ALL)
|
|
|
|
#define LC_COLLATE_MASK (1 << LC_COLLATE)
|
|
|
|
#define LC_CTYPE_MASK (1 << LC_CTYPE)
|
|
|
|
#define LC_MONETARY_MASK (1 << LC_MONETARY)
|
|
|
|
#define LC_NUMERIC_MASK (1 << LC_NUMERIC)
|
|
|
|
#define LC_TIME_MASK (1 << LC_TIME)
|
|
|
|
#define LC_MESSAGES_MASK (1 << LC_MESSAGES)
|
|
|
|
|
2016-07-22 02:49:42 +08:00
|
|
|
#define LC_GLOBAL_LOCALE ((struct __locale_t *) -1)
|
2016-07-13 22:51:33 +08:00
|
|
|
|
2016-07-23 20:19:52 +08:00
|
|
|
#endif /* __POSIX_VISIBLE >= 200809 */
|
2016-07-13 22:51:33 +08:00
|
|
|
|
2002-06-28 07:58:38 +08:00
|
|
|
_BEGIN_STD_C
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
struct lconv
|
|
|
|
{
|
|
|
|
char *decimal_point;
|
|
|
|
char *thousands_sep;
|
|
|
|
char *grouping;
|
|
|
|
char *int_curr_symbol;
|
|
|
|
char *currency_symbol;
|
|
|
|
char *mon_decimal_point;
|
|
|
|
char *mon_thousands_sep;
|
|
|
|
char *mon_grouping;
|
|
|
|
char *positive_sign;
|
|
|
|
char *negative_sign;
|
|
|
|
char int_frac_digits;
|
|
|
|
char frac_digits;
|
|
|
|
char p_cs_precedes;
|
|
|
|
char p_sep_by_space;
|
|
|
|
char n_cs_precedes;
|
|
|
|
char n_sep_by_space;
|
|
|
|
char p_sign_posn;
|
|
|
|
char n_sign_posn;
|
2009-06-17 03:45:17 +08:00
|
|
|
char int_n_cs_precedes;
|
|
|
|
char int_n_sep_by_space;
|
|
|
|
char int_n_sign_posn;
|
|
|
|
char int_p_cs_precedes;
|
|
|
|
char int_p_sep_by_space;
|
|
|
|
char int_p_sign_posn;
|
2000-02-18 03:39:52 +08:00
|
|
|
};
|
|
|
|
|
2016-07-23 04:54:07 +08:00
|
|
|
struct _reent;
|
2017-12-04 13:54:48 +08:00
|
|
|
char *_setlocale_r (struct _reent *, int, const char *);
|
|
|
|
struct lconv *_localeconv_r (struct _reent *);
|
2016-07-23 04:54:07 +08:00
|
|
|
|
2016-08-25 23:27:37 +08:00
|
|
|
struct __locale_t *_newlocale_r (struct _reent *, int, const char *,
|
|
|
|
struct __locale_t *);
|
2016-08-25 15:53:01 +08:00
|
|
|
void _freelocale_r (struct _reent *, struct __locale_t *);
|
2016-08-25 23:27:37 +08:00
|
|
|
struct __locale_t *_duplocale_r (struct _reent *, struct __locale_t *);
|
|
|
|
struct __locale_t *_uselocale_r (struct _reent *, struct __locale_t *);
|
2024-01-21 20:23:09 +08:00
|
|
|
const char *_getlocalename_l_r (struct _reent *, int, struct __locale_t *);
|
2016-07-23 04:54:07 +08:00
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#ifndef _REENT_ONLY
|
2016-07-23 20:19:52 +08:00
|
|
|
|
2017-12-04 13:54:48 +08:00
|
|
|
char *setlocale (int, const char *);
|
|
|
|
struct lconv *localeconv (void);
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2016-07-29 15:52:50 +08:00
|
|
|
#if __POSIX_VISIBLE >= 200809
|
2016-07-23 04:54:07 +08:00
|
|
|
locale_t newlocale (int, const char *, locale_t);
|
|
|
|
void freelocale (locale_t);
|
|
|
|
locale_t duplocale (locale_t);
|
|
|
|
locale_t uselocale (locale_t);
|
2016-07-29 15:52:50 +08:00
|
|
|
#endif /* __POSIX_VISIBLE >= 200809 */
|
2016-07-23 20:19:52 +08:00
|
|
|
|
2024-08-16 00:27:28 +08:00
|
|
|
#if __POSIX_VISIBLE >= 202405
|
2024-01-21 20:23:09 +08:00
|
|
|
const char *getlocalename_l (int, struct __locale_t *);
|
|
|
|
#endif
|
|
|
|
|
2016-07-23 20:19:52 +08:00
|
|
|
#endif /* _REENT_ONLY */
|
|
|
|
|
2002-06-28 07:58:38 +08:00
|
|
|
_END_STD_C
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#endif /* _LOCALE_H_ */
|