shithub: riscv

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