mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
13 lines
238 B
C
13 lines
238 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, ...);
|
|
int max(int a, int b);
|
|
|
|
#endif
|