printf.h 167 B

12345678910
  1. #ifndef _PRINTF_H_
  2. #define _PRINTF_H_
  3. #define CONSOLE_PRINTBUF_SIZE 512
  4. void console_printf(char *fmt, ...);
  5. #define __xprintf console_printf
  6. #endif //_PRINTF_H_