view gsm-fw/sprintf/old/vsprintf.c @ 333:2ac2f6d88bb2

rvinterf & rvtdump: use the new libg23 for G23 packet decoding
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 22 Apr 2014 05:11:03 +0000
parents 7e45ada9c365
children
line wrap: on
line source

#include <stdarg.h>

int
vsprintf(str, fmt, ap)
	va_list ap;
	char *str, *fmt;
{
	char *strptr;
	int len;

	strptr = str;
	len = _doprnt(fmt, ap, &strptr);
	*strptr = '\0';
	return(len);
}