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