/
clang
/
musl
Обзор
Документация
Войти
/
clang
/
musl
Код
Вики
Пакеты
0
Релизы
0
Аналитика
master
src/stdio/swprintf.c
12 строк
225 B
Szabolcs Nagy
include cleanups: remove unused headers and add feature test macros
12 дек 2013, 09:09
12 дек 2013, 09:09
5717444
Код
Авторство
О чём код?
#include <stdarg.h> #include <wchar.h> int swprintf(wchar_t *restrict s, size_t n, const wchar_t *restrict fmt, ...) { int ret; va_list ap; va_start(ap, fmt); ret = vswprintf(s, n, fmt, ap); va_end(ap); return ret; }