FreeCalypso > hg > freecalypso-sw
view gsm-fw/sprintf/sprintf.c @ 842:a862a41f26b7
gsm-fw/cfgmagic/processconf.sh: g23m-glue added to the build for GSM
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 25 Apr 2015 19:40:45 +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); }