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