8 lines
119 B
C
8 lines
119 B
C
|
#ifndef PRINT_H
|
||
|
#define PRINT_H
|
||
|
|
||
|
int print(char *fmt, ...);
|
||
|
void print_init(void (*putc)(char));
|
||
|
|
||
|
#endif /* PRINT_H */
|