Files
cpufetch/src/common/global.h
2020-11-05 09:28:41 +01:00

12 lines
215 B
C

#ifndef __GLOBAL__
#define __GLOBAL__
#include <stdbool.h>
void set_log_level(bool verbose);
void printWarn(const char *fmt, ...);
void printErr(const char *fmt, ...);
void printBug(const char *fmt, ...);
#endif