1
0

print: Allow for more than one output for console messages

This commit is contained in:
2012-10-09 23:13:37 -04:00
parent a64668b239
commit 5f59e07432
3 changed files with 74 additions and 13 deletions

View File

@ -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, ...);