lazysphere/lib/error.h
2023-05-06 00:39:44 -04:00

13 lines
286 B
C

#ifndef ERROR_H
#define ERROR_H
__attribute__ ((__format__(printf, 1, 2)))
void error_s(const char* format, ...);
__attribute__ ((__format__(printf, 1, 2)))
void error(const char* format, ...);
__attribute__ ((__format__(printf, 1, 2)))
void output(const char* format, ...);
#endif