Sha256: 847018d129fc5711a29ae1330b790813717db110ed86a01dfa939998409d2ef6
Contents?: true
Size: 227 Bytes
Versions: 5
Compression:
Stored size: 227 Bytes
Contents
#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; }
Version data entries
5 entries across 5 versions & 1 rubygems