xref: /plan9/sys/src/cmd/unix/drawterm/libc/fmtstr.c (revision 8ccd4a6360d974db7bd7bbd4f37e7018419ea908)
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