mprintf.h

Go to the documentation of this file.
00001 /* Prototipos do mprintf */
00002 
00003 #ifndef __MPRINTF__
00004 #define __MPRINTF__
00005 
00006 #include "../lpc_config.h"
00007 #include <stdarg.h>
00008 
00009 int atoi(char *str);
00010 double atod(char *str);
00011 int dprint(double x, int campo, int frac, void (*putc)(int));
00012 int mprintf(void (*putc)(int), const char *format, ... );
00013 int sprintf(char *, const char *format, ... );
00014 #endif