shithub: tlsclient

ref: f384883d5a02d80c4cd26087e9194a18243ce668
dir: tlsclient/libc/runesprint.c

View raw version
#include <u.h>
#include <libc.h>
#include "fmtdef.h"

int
runesprint(Rune *buf, char *fmt, ...)
{
	int n;
	va_list args;

	va_start(args, fmt);
	n = runevsnprint(buf, 256, fmt, args);
	va_end(args);
	return n;
}