FreeCalypso > hg > freecalypso-sw
view gsm-fw/sprintf/sprintf.c @ 543:2dccd2b4e5a2
gsm-fw/L1/cust0/Makefile: forgot -mthumb for l1_cust_xip.o
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Sun, 03 Aug 2014 05:36:56 +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); }
