comparison sprintf/old/vsprintf.c @ 0:75a11d740a02

initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 09 Jun 2016 00:02:41 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:75a11d740a02
1 #include <stdarg.h>
2
3 int
4 vsprintf(str, fmt, ap)
5 va_list ap;
6 char *str, *fmt;
7 {
8 char *strptr;
9 int len;
10
11 strptr = str;
12 len = _doprnt(fmt, ap, &strptr);
13 *strptr = '\0';
14 return(len);
15 }