FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/printf.c @ 652:a39ec5bb5549
gsm-fw/cdg: imported MDF and PDF files from LoCosto, along with XML sources
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Thu, 25 Sep 2014 08:46:13 +0000 |
| parents | 40f607bb0a2c |
| children |
line wrap: on
line source
#include <stdarg.h> extern void putchar(); int printf(char *fmt, ...) { va_list ap; int len; va_start(ap, fmt); len = _doprnt(fmt, ap, &putchar); va_end(ap); return(len); }
