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
remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl.git]
/
src
/
stdio
/
swprintf.c
blob
f75eb112e7c0d7e22b79c03204cc00c6af7575e7
1
#include <stdarg.h>
2
#include <wchar.h>
3
4
int
swprintf
(
wchar_t
*
restrict s
,
size_t
n
,
const wchar_t
*
restrict fmt
, ...)
5
{
6
int
ret
;
7
va_list
ap
;
8
va_start
(
ap
,
fmt
);
9
ret
=
vswprintf
(
s
,
n
,
fmt
,
ap
);
10
va_end
(
ap
);
11
return
ret
;
12
}
13