FreeCalypso > hg > freecalypso-sw
comparison nuc-fw/sprintf/sprintf.c @ 79:947b1f473960
beginning of nuc-fw
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 11 Aug 2013 07:17:25 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
78:2c266d4339ff | 79:947b1f473960 |
---|---|
1 #include <stdarg.h> | |
2 | |
3 int | |
4 sprintf(char *strdest, char *fmt, ...) | |
5 { | |
6 va_list ap; | |
7 char *strptr; | |
8 int len; | |
9 | |
10 strptr = strdest; | |
11 va_start(ap, fmt); | |
12 len = _doprnt(fmt, ap, &strptr); | |
13 va_end(ap); | |
14 *strptr = '\0'; | |
15 return(len); | |
16 } |