xref: /plan9-contrib/sys/src/libc/fmt/fmtstr.c (revision ec59a3ddbfceee0efe34584c2c9981a5e5ff1ec4)
1 #include <u.h>
2 #include <libc.h>
3 
4 char*
5 fmtstrflush(Fmt *f)
6 {
7 	if(f->start == nil)
8 		return nil;
9 	*(char*)f->to = '\0';
10 	return f->start;
11 }
12