runeseprint.c 204 B

1234567891011121314
  1. #include <u.h>
  2. #include <libc.h>
  3. Rune*
  4. runeseprint(Rune *buf, Rune *e, char *fmt, ...)
  5. {
  6. Rune *p;
  7. va_list args;
  8. va_start(args, fmt);
  9. p = runevseprint(buf, e, fmt, args);
  10. va_end(args);
  11. return p;
  12. }