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