diff options
author | pk33 <pk33@email.com> | 2024-11-03 03:46:13 +0100 |
---|---|---|
committer | pk33 <pk33@email.com> | 2024-11-03 03:46:13 +0100 |
commit | 69058973a9f5073184b9f0b98dbcbbd63da40514 (patch) | |
tree | 67d9dcda3c8a67f1b22a0752a25839a2266327e7 /musl/uchar.h | |
parent | 0f23d50c8291b23799e55c8653c15f16c0d752d0 (diff) | |
download | engine33-69058973a9f5073184b9f0b98dbcbbd63da40514.tar.gz |
ignore
Diffstat (limited to 'musl/uchar.h')
-rw-r--r-- | musl/uchar.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/musl/uchar.h b/musl/uchar.h deleted file mode 100644 index 7e5c4d4..0000000 --- a/musl/uchar.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef _UCHAR_H -#define _UCHAR_H - -#ifdef __cplusplus -extern "C" { -#endif - -#if __cplusplus < 201103L -typedef unsigned short char16_t; -typedef unsigned char32_t; -#endif - -#define __NEED_mbstate_t -#define __NEED_size_t - -#include <features.h> -#include <bits/alltypes.h> - -size_t c16rtomb(char *__restrict, char16_t, mbstate_t *__restrict); -size_t mbrtoc16(char16_t *__restrict, const char *__restrict, size_t, mbstate_t *__restrict); - -size_t c32rtomb(char *__restrict, char32_t, mbstate_t *__restrict); -size_t mbrtoc32(char32_t *__restrict, const char *__restrict, size_t, mbstate_t *__restrict); - -#ifdef __cplusplus -} -#endif - -#endif |