ref: 673bb2f19f13a189a9cc8924ebe3c06b56c4cc3b dir: /libc/fmtstr.c/
#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; }