shithub: drawterm-fdroid

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