shithub: drawterm-fdroid

ref: 54ca86f879d7f131fa76dc448193caa31feed5ad
dir: /libc/fmtstr.c/

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

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