view target-utils/libprintf/vsprintf.c @ 146:4d629b6bbcfd

gsm-fw/sprintf: %f implemented, debug output looks correct
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Thu, 14 Nov 2013 19:03:52 +0000
parents 40f607bb0a2c
children
line wrap: on
line source

#include <stdarg.h>

extern void _sprintf_putchar();

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

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