rulimine/stage2/lib/print.h
2020-09-14 19:32:11 +02:00

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