source: azure_iot_hub/trunk/musl-1.1.18/src/locale/setlocale.c@ 389

Last change on this file since 389 was 389, checked in by coas-nagasima, 5 years ago

ビルドが通るよう更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 1.7 KB
Line 
1#include <locale.h>
2#include <stdlib.h>
3#include <string.h>
4#include "locale_impl.h"
5#include "libc.h"
6#include "atomic.h"
7
8static char buf[LC_ALL*(LOCALE_NAME_MAX+1)];
9
10static char *setlocale_one_unlocked(int cat, const char *name)
11{
12 const struct __locale_map *lm;
13
14 if (name) libc.global_locale.cat[cat] = lm = __get_locale(cat, name);
15 else lm = libc.global_locale.cat[cat];
16
17 return lm ? (char *)lm->name : "C";
18}
19
20char *__strchrnul(const char *, int);
21
22char *setlocale(int cat, const char *name)
23{
24 static volatile int lock[2];
25
26 if ((unsigned)cat > LC_ALL) return 0;
27
28 LOCK(lock);
29
30 /* For LC_ALL, setlocale is required to return a string which
31 * encodes the current setting for all categories. The format of
32 * this string is unspecified, and only the following code, which
33 * performs both the serialization and deserialization, depends
34 * on the format, so it can easily be changed if needed. */
35 if (cat == LC_ALL) {
36 int i;
37 if (name) {
38 char part[LOCALE_NAME_MAX+1] = "C.UTF-8";
39 const char *p = name;
40 for (i=0; i<LC_ALL; i++) {
41 const char *z = __strchrnul(p, ';');
42 if (z-p <= LOCALE_NAME_MAX) {
43 memcpy(part, p, z-p);
44 part[z-p] = 0;
45 if (*z) p = z+1;
46 }
47 setlocale_one_unlocked(i, part);
48 }
49 }
50 char *s = buf;
51 const char *part;
52 int same = 0;
53 for (i=0; i<LC_ALL; i++) {
54 const struct __locale_map *lm =
55 libc.global_locale.cat[i];
56 if (lm == libc.global_locale.cat[0]) same++;
57 part = lm ? lm->name : "C";
58 size_t l = strlen(part);
59 memcpy(s, part, l);
60 s[l] = ';';
61 s += l+1;
62 }
63 *--s = 0;
64 UNLOCK(lock);
65 return same==LC_ALL ? (char *)part : buf;
66 }
67
68 char *ret = setlocale_one_unlocked(cat, name);
69
70 UNLOCK(lock);
71
72 return ret;
73}
Note: See TracBrowser for help on using the repository browser.