lazysphere/lib/error.h

14 lines
286 B
C
Raw Normal View History

2023-05-06 04:39:44 +00:00
#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