shithub: drawterm-fdroid

ref: 934846f35caaf236b554c5253cabc1032af2a27a
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;
}