00001 00041 #ifndef CONSOLE_H_INCLUDED 00042 #define CONSOLE_H_INCLUDED 00043 00044 #include <compiler.h> 00045 #include <stdarg.h> 00046 00050 struct console { 00052 struct console_driver *drv; 00053 }; 00054 00055 int console_vprintf(struct console *con, const char *format, va_list ap); 00056 int console_printf(struct console *con, const char *format, ...) 00057 __printf_format(2, 3); 00058 int console_putstr(struct console *con, const char *str); 00059 int console_putchar(struct console *con, int c); 00060 00061 #endif /* CONSOLE_H_INCLUDED */
1.5.8