print: Allow for more than one output for console messages
This commit is contained in:
@ -21,7 +21,9 @@
|
||||
#ifndef PRINT_H
|
||||
#define PRINT_H
|
||||
|
||||
void print_init(int (*putc)(char));
|
||||
int print_register_func_early(int (*putc)(char));
|
||||
int print_register_func(int (*putc)(char));
|
||||
int print_unregister_func(int (*putc)(char));
|
||||
int print(char *fmt, ...);
|
||||
int print_func(int (putcf)(char), char *fmt, ...);
|
||||
|
||||
|
Reference in New Issue
Block a user