fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

seprint.c (305B)


      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 
      8 char* seprint(char* buf, char* e, char* fmt, ...) {
      9 	char*   p;
     10 	va_list args;
     11 
     12 	va_start(args, fmt);
     13 	p = vseprint(buf, e, fmt, args);
     14 	va_end(args);
     15 	return p;
     16 }