shithub: pc

ref: 174b17bb208f2fe4a0973a91f3477d4f1df96c4a
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;
}