repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
support clang internal assembler when building for arm as thumb2 code
[musl.git]
/
src
/
multibyte
/
c32rtomb.c
blob
67851328e889a355ebdf2b881c85427463775373
1
#include <uchar.h>
2
#include <wchar.h>
3
4
size_t
c32rtomb
(
char
*
restrict s
,
char32_t c32
,
mbstate_t
*
restrict ps
)
5
{
6
return
wcrtomb
(
s
,
c32
,
ps
);
7
}