source: azure_iot_hub/trunk/musl-1.1.18/include/uchar.h@ 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-chdr
File size: 601 bytes
Line 
1#ifndef _UCHAR_H
2#define _UCHAR_H
3
4#ifdef __cplusplus
5extern "C" {
6#else
7typedef unsigned short char16_t;
8typedef unsigned char32_t;
9#endif
10
11#define __NEED_mbstate_t
12#define __NEED_size_t
13
14#include <features.h>
15#include <bits/alltypes.h>
16
17size_t c16rtomb(char *__restrict, char16_t, mbstate_t *__restrict);
18size_t mbrtoc16(char16_t *__restrict, const char *__restrict, size_t, mbstate_t *__restrict);
19
20size_t c32rtomb(char *__restrict, char32_t, mbstate_t *__restrict);
21size_t mbrtoc32(char32_t *__restrict, const char *__restrict, size_t, mbstate_t *__restrict);
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif
Note: See TracBrowser for help on using the repository browser.