Sha256: 54e0b5b071308e996c7dd9b37a352b54c573d08ba8cdc6f4349f7c73387e15ad
Contents?: true
Size: 244 Bytes
Versions: 5
Compression:
Stored size: 244 Bytes
Contents
#include <stdio.h> #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; }
Version data entries
5 entries across 5 versions & 1 rubygems