mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
20 lines
430 B
C
20 lines
430 B
C
#ifndef __GLOBAL__
|
|
#define __GLOBAL__
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
#define STRING_UNKNOWN "Unknown"
|
|
|
|
void set_log_level(bool verbose);
|
|
void printWarn(const char *fmt, ...);
|
|
void printErr(const char *fmt, ...);
|
|
void printBug(const char *fmt, ...);
|
|
int min(int a, int b);
|
|
int max(int a, int b);
|
|
char *strremove(char *str, const char *sub);
|
|
void* emalloc(size_t size);
|
|
void* ecalloc(size_t nmemb, size_t size);
|
|
|
|
#endif
|