shithub: riscv

ref: 6e64d30454f71ecda88dba1bd792e97509115d73
dir: /sys/src/libc/fmt/runefmtstr.c/

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

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