-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathlocale_impl.h
More file actions
74 lines (60 loc) · 2.23 KB
/
locale_impl.h
File metadata and controls
74 lines (60 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef _LOCALE_IMPL_H
#define _LOCALE_IMPL_H
#include <locale.h>
#include <stdlib.h>
#include "libc.h"
#if defined(__wasilibc_unmodified_upstream) || defined(_REENTRANT)
#include "pthread_impl.h"
#endif
#define LOCALE_NAME_MAX 23
struct __locale_map {
const void *map;
size_t map_size;
char name[LOCALE_NAME_MAX+1];
const struct __locale_map *next;
};
#if defined(__wasilibc_unmodified_upstream) || defined(_REENTRANT)
#include "lock.h"
extern hidden __lock_t __locale_lock[1];
#endif
extern hidden const struct __locale_map __c_dot_utf8;
extern hidden const struct __locale_struct __c_locale;
extern hidden const struct __locale_struct __c_dot_utf8_locale;
hidden const struct __locale_map *__get_locale(int, const char *);
hidden const char *__mo_lookup(const void *, size_t, const char *);
hidden const char *__lctrans(const char *, const struct __locale_map *);
#ifdef __wasilibc_unmodified_upstream
hidden const char *__lctrans_cur(const char *);
#else
// We make this visible in the wasi-libc build because
// libwasi-emulated-signal.so needs to import it from libc.so. If we ever
// decide to merge libwasi-emulated-signal.so into libc.so, this will no longer
// be necessary.
const char *__lctrans_cur(const char *);
#endif
hidden const char *__lctrans_impl(const char *, const struct __locale_map *);
hidden int __loc_is_allocated(locale_t);
hidden char *__gettextdomain(void);
#define LOC_MAP_FAILED ((const struct __locale_map *)-1)
#define LCTRANS(msg, lc, loc) __lctrans(msg, (loc)->cat[(lc)])
#define LCTRANS_CUR(msg) __lctrans_cur(msg)
#define C_LOCALE ((locale_t)&__c_locale)
#define UTF8_LOCALE ((locale_t)&__c_dot_utf8_locale)
#if defined(__wasilibc_unmodified_upstream) || defined(_REENTRANT)
#define CURRENT_LOCALE (__pthread_self()->locale)
#define CURRENT_UTF8 (!!__pthread_self()->locale->cat[LC_CTYPE])
#else
// If we haven't set up the current_local field yet, do so. Then return an
// lvalue for the current_locale field.
#define CURRENT_LOCALE \
(*({ \
if (!libc.current_locale) { \
libc.current_locale = &libc.global_locale; \
} \
&libc.current_locale; \
}))
#define CURRENT_UTF8 (!!CURRENT_LOCALE->cat[LC_CTYPE])
#endif
#undef MB_CUR_MAX
#define MB_CUR_MAX (CURRENT_UTF8 ? 4 : 1)
#endif