view nuc-fw/sprintf/vsprintf.c @ 117:e40d8661ecab

nuc-fw: low-level serial code should be complete
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 28 Oct 2013 07:35:47 +0000
parents 947b1f473960
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);
}