view target-utils/libprintf/vsprintf.c @ 1020:fab048ff04b8

doc/Freerunner-Howto: update for voice calls working with the FR codec
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Sat, 23 Apr 2016 05:17:15 +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);
}