10 lines
158 B
C
10 lines
158 B
C
#ifndef __LIB__PRINT_H__
|
|
#define __LIB__PRINT_H__
|
|
|
|
#include <stdarg.h>
|
|
|
|
void print(const char *fmt, ...);
|
|
void vprint(const char *fmt, va_list args);
|
|
|
|
#endif
|