FreeCalypso > hg > freecalypso-sw
view gsm-fw/sprintf/old/sprintf.c @ 561:eb3fb4d0dcf0
L1: disable all DSP patch DWNLD for now
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 05 Aug 2014 21:50:05 +0000 |
parents | 7e45ada9c365 |
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); }