ref: 9e58d45fe72b32635abe2770324f51791d9e5b36
dir: /libc/runesnprint.c/
#include <u.h>
#include <libc.h>
#include "fmtdef.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;
}