mirror of
https://github.com/0intro/conterm
synced 2024-11-24 14:49:40 +03:00
15 lines
176 B
C
15 lines
176 B
C
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
|
||
|
Rune*
|
||
|
runesmprint(char *fmt, ...)
|
||
|
{
|
||
|
va_list args;
|
||
|
Rune *p;
|
||
|
|
||
|
va_start(args, fmt);
|
||
|
p = runevsmprint(fmt, args);
|
||
|
va_end(args);
|
||
|
return p;
|
||
|
}
|