10 lines
107 B
C
10 lines
107 B
C
#ifndef PRINT_H
|
|
#define PRINT_H
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
int printfn(char *, ...);
|
|
|
|
#endif
|