shithub: riscv

ref: 698837e7150af19ff6a3f0bf2144dffc81202a55
dir: /sys/src/libc/fmt/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;
}