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
/
wcstombs.c
blob
ab152874db940934148ef0e2e357db2ccba1042f
1
#include <stdlib.h>
2
#include <wchar.h>
3
4
size_t
wcstombs
(
char
*
restrict s
,
const wchar_t
*
restrict ws
,
size_t
n
)
5
{
6
return
wcsrtombs
(
s
, &(
const wchar_t
*){
ws
},
n
,
0
);
7
}