FreeCalypso > hg > freecalypso-sw
view gsm-fw/sprintf/sprintf.c @ 903:312778104f54
lcdemu started, compiles and runs w/o actual functionality
| author | Space Falcon <falcon@ivan.Harhan.ORG> | 
|---|---|
| date | Mon, 07 Sep 2015 08:34:37 +0000 | 
| parents | 7e45ada9c365 | 
| children | 
line wrap: on
 line source
#include <stdarg.h> int sprintf(char *strdest, char *fmt, ...) { va_list ap; int len; va_start(ap, fmt); len = vsprintf(strdest, fmt, ap); va_end(ap); return(len); }
