shithub: drawterm

ref: b44945b79ee0413d93bedc0dfb3f569d028bc6c2
dir: /libc/fmtstr.c/

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

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