so i was refactoring everything to get as little duplicate code and includes as possible when i realised there was a lot i could do, aka there was a ton to do, so no new code, just refactoring and moving old one
24 lines
311 B
C
24 lines
311 B
C
#ifndef LIB_H
|
|
#define LIB_H
|
|
|
|
#ifdef __APPLE__
|
|
|
|
void get_device_info();
|
|
void disk_size();
|
|
void size();
|
|
void av_size();
|
|
void ram_info();
|
|
void cpu_frequency();
|
|
void cpu_name();
|
|
void cpu_threads();
|
|
|
|
void cpu_name();
|
|
void cpu_temperature();
|
|
void cpu_frequency();
|
|
void mem_size();
|
|
void mem_av_size();
|
|
|
|
#endif
|
|
#endif
|
|
|