rulimine/stage23/lib/print.h
2021-02-25 01:24:54 +01: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