code: 9ferno

ref: 2dd98ec94ebe7429531ae99996841e46faa73e5c
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;
}