mirror of
https://github.com/0intro/conterm
synced 2024-11-24 14:49:40 +03:00
13 lines
167 B
C
13 lines
167 B
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;
|
|
}
|