1 #ifndef __DEBUG_PRINT_H 2 #define __DEBUG_PRINT_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 #include <stdarg.h> 9 10 int printk_direct(const char *fmt, ...); 11 12 /* for ulog encoder*/ 13 int print_driver(const char *fmt, va_list ap, unsigned int buf[]); 14 15 #ifdef __cplusplus 16 } 17 #endif 18 19 #endif /* __DEBUG_PRINT_H */ 20