18 lines
177 B
C
18 lines
177 B
C
|
#ifndef CONFIG_H
|
||
|
#define CONFIG_H
|
||
|
|
||
|
void (*FUNCS[])(void) = {
|
||
|
PrintOs,
|
||
|
GetAvg,
|
||
|
GetKernel,
|
||
|
GetShell,
|
||
|
GetUptime,
|
||
|
GetUser,
|
||
|
GetPkgs,
|
||
|
GetArch,
|
||
|
Blank,
|
||
|
PrintColors
|
||
|
};
|
||
|
|
||
|
#endif
|