source: azure_iot_hub/trunk/musl-1.1.18/src/locale/c_locale.c@ 388

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

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 364 bytes
Line 
1#include "locale_impl.h"
2#include <stdint.h>
3
4static const uint32_t empty_mo[] = { 0x950412de, 0, -1, -1, -1 };
5
6const struct __locale_map __c_dot_utf8 = {
7 .map = empty_mo,
8 .map_size = sizeof empty_mo,
9 .name = "C.UTF-8"
10};
11
12const struct __locale_struct __c_locale = { 0 };
13const struct __locale_struct __c_dot_utf8_locale = {
14 .cat[LC_CTYPE] = &__c_dot_utf8
15};
Note: See TracBrowser for help on using the repository browser.