/
clang
/
musl
Обзор
Документация
Войти
/
clang
/
musl
Код
Вики
Пакеты
0
Релизы
0
Аналитика
master
src/stdio/fwprintf.c
13 строк
227 B
Rich Felker
use restrict everywhere it's required by c99 and/or posix 2008
07 сен 2012, 06:44
07 сен 2012, 06:44
400c5e5
Код
Авторство
О чём код?
#include <stdio.h> #include <stdarg.h> #include <wchar.h> int fwprintf(FILE *restrict f, const wchar_t *restrict fmt, ...) { int ret; va_list ap; va_start(ap, fmt); ret = vfwprintf(f, fmt, ap); va_end(ap); return ret; }