seprint.c - 9base - revived minimalist port of Plan 9 userland to Unix
HTML git clone git://git.suckless.org/9base
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
seprint.c (302B)
---
1 /* Copyright (c) 2002-2006 Lucent Technologies; see LICENSE */
2 #include <stdarg.h>
3 #include "plan9.h"
4 #include "fmt.h"
5 #include "fmtdef.h"
6
7 char*
8 seprint(char *buf, char *e, char *fmt, ...)
9 {
10 char *p;
11 va_list args;
12
13 va_start(args, fmt);
14 p = vseprint(buf, e, fmt, args);
15 va_end(args);
16 return p;
17 }