git: 9front

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