aboutsummaryrefslogtreecommitdiffstats
path: root/io/aswprintf.c
blob: d65094efeba59c3bdd684ab6a4e9e0a615e22bb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#define NO_OPAQUE_TYPE
#include "io.h"

int aswprintf(wchar_t **string, wchar_t const *restrict format, ...)
{
	va_list arg;
	va_start(arg, format);
	int lenght = vaswprintf(string, format, arg);
	va_end(arg);
	return lenght;
}