runefmtstr.c (301B) download
1/* Copyright (c) 2002-2006 Lucent Technologies; see LICENSE */
2#include "fmt.h"
3#include "fmtdef.h"
4#include "plan9.h"
5
6#include <stdarg.h>
7#include <stdlib.h>
8
9Rune* runefmtstrflush(Fmt* f) {
10 if (f->start == nil)
11 return nil;
12 *(Rune*) f->to = '\0';
13 f->to = f->start;
14 return f->start;
15}