FreeCalypso > hg > freecalypso-sw
view gsm-fw/sprintf/old/sprintf.c @ 223:0848c7f419fd
gsm-fw/configs: checking some configurations into source control,
now that we have some selectable features
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 07 Jan 2014 05:58:11 +0000 (2014-01-07) |
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); }