shithub: drawterm

ref: 176f1fa82e08aacc6b0acb24f5e36b7e4c257c4e
dir: /libc/runefmtstr.c/

View raw version
#include <u.h>
#include <libc.h>

Rune*
runefmtstrflush(Fmt *f)
{
	if(f->start == nil)
		return nil;
	*(Rune*)f->to = '\0';
	return f->start;
}