Files
2020-10-16 15:30:25 +03:00

8 lines
195 B
C

#pragma once
#include <stdarg.h>
void err(int eval, const char *fmt, ...);
void errx(int eval, const char *fmt, ...);
void warn(const char *fmt, ...);
void vwarn(const char *fmt, va_list args);