1
0

print: Add print_func() - output text w/ custom putc()

This commit is contained in:
2012-10-02 23:07:31 -04:00
parent ea66b3dd3a
commit 9150109729
2 changed files with 40 additions and 21 deletions

View File

@ -21,7 +21,8 @@
#ifndef PRINT_H
#define PRINT_H
int print(char *fmt, ...);
void print_init(void (*putc)(char));
int print(char *fmt, ...);
int print_func(void (putcf)(char), char *fmt, ...);
#endif /* PRINT_H */