add locale framework
[musl] / src / locale / uselocale.c
1 #include "locale_impl.h"
2 #include "pthread_impl.h"
3 #include "libc.h"
4
5 locale_t __uselocale(locale_t new)
6 {
7         pthread_t self = __pthread_self();
8         locale_t old = self->locale;
9         locale_t global = &libc.global_locale;
10
11         if (new == LC_GLOBAL_LOCALE) new = global;
12
13         if (new && new != old) {
14                 int adj = 0;
15                 if (new == global) a_dec(&libc.uselocale_cnt);
16                 else if (!new->ctype_utf8) adj++;
17                 if (old == global) a_inc(&libc.uselocale_cnt);
18                 else if (!old->ctype_utf8) adj--;
19                 a_fetch_add(&libc.bytelocale_cnt_minus_1, adj);
20                 self->locale = new;
21         }
22
23         return old == global ? LC_GLOBAL_LOCALE : old;
24 }
25
26 weak_alias(__uselocale, uselocale);