FreeCalypso > hg > freecalypso-sw
view nuc-fw/sprintf/vsprintf.c @ 142:15d5977390c2
fw build for pirelli: set the ASIC_CONF register like the original fw does
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Tue, 12 Nov 2013 05:00:00 +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); }
