conterm/libc/runefmtstr.c
Russ Cox 934846f35c a
2005-08-08 12:50:13 +00:00

12 lines
144 B
C

#include <u.h>
#include <libc.h>
Rune*
runefmtstrflush(Fmt *f)
{
if(f->start == nil)
return nil;
*(Rune*)f->to = '\0';
return f->start;
}