code: purgatorio

ref: d3da2e1b89f30f404c3d11053680098f1b7bf677
dir: /lib9/runesnprint.c/

View raw version
#include "lib9.h"

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

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