rulimine/stage2/lib/print.h

10 lines
158 B
C
Raw Normal View History

2020-05-10 01:38:27 +03:00
#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