git: 9front

ref: afb91a939fb346e44484f6f5e9a41e77dbc3ada8
dir: /sys/src/cmd/unix/drawterm/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;
}