Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(491)

Side by Side Diff: fusl/include/uchar.h

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/include/time.h ('k') | fusl/include/ucontext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef _UCHAR_H
2 #define _UCHAR_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #else
7 typedef unsigned short char16_t;
8 typedef 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
17 size_t c16rtomb(char *__restrict, char16_t, mbstate_t *__restrict);
18 size_t mbrtoc16(char16_t *__restrict, const char *__restrict, size_t, mbstate_t *__restrict);
19
20 size_t c32rtomb(char *__restrict, char32_t, mbstate_t *__restrict);
21 size_t mbrtoc32(char32_t *__restrict, const char *__restrict, size_t, mbstate_t *__restrict);
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif
OLDNEW
« no previous file with comments | « fusl/include/time.h ('k') | fusl/include/ucontext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698