00001 /* ndk - [ printf.h ] 00002 * 00003 * Contains code for the libc printf function 00004 * 00005 * (c)2002 dcipher / neuraldk 00006 * www.neuraldk.org 00007 */ 00008 00009 #ifndef __ndk_printf_h__ 00010 #define __ndk_printf_h__ 00011 00012 void printf(const char *format, ...); 00013 void putchar(int c); 00014 void itoa(char *buf, int base, int d, signed int length); 00015 00016 #endif