FreeCalypso > hg > freecalypso-sw
view nuc-fw/sprintf/sprintf.c @ 118:21de8d8e6ea7
checking in Riviera code from the Sotomodem version
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 29 Oct 2013 07:03:45 +0000 |
parents | 947b1f473960 |
children |
line wrap: on
line source
#include <stdarg.h> int sprintf(char *strdest, char *fmt, ...) { va_list ap; char *strptr; int len; strptr = strdest; va_start(ap, fmt); len = _doprnt(fmt, ap, &strptr); va_end(ap); *strptr = '\0'; return(len); }