diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-10-13 20:59:42 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-10-13 20:59:42 -0400 |
commit | ab9672ae73248f51e30f4553c4b8878525e46383 (patch) | |
tree | fd3cfee2bcc10a64b83009af92f0de09703dfa75 /src/multibyte/c32rtomb.c | |
parent | 00548408398ced546c540dab773ea66cea4fe1c2 (diff) | |
download | musl-ab9672ae73248f51e30f4553c4b8878525e46383.tar.gz musl-ab9672ae73248f51e30f4553c4b8878525e46383.tar.xz musl-ab9672ae73248f51e30f4553c4b8878525e46383.zip |
implement uchar.h (C11 UTF-16/32 conversion) interfaces
Diffstat (limited to 'src/multibyte/c32rtomb.c')
-rw-r--r-- | src/multibyte/c32rtomb.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/multibyte/c32rtomb.c b/src/multibyte/c32rtomb.c new file mode 100644 index 00000000..67851328 --- /dev/null +++ b/src/multibyte/c32rtomb.c @@ -0,0 +1,7 @@ +#include <uchar.h> +#include <wchar.h> + +size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps) +{ + return wcrtomb(s, c32, ps); +} |