12 lines
146 B
C
12 lines
146 B
C
#ifndef CPU_H
|
|
#define CPU_H
|
|
|
|
#ifdef __APPLE__
|
|
|
|
float get_cpu_freq(void);
|
|
char* get_cpu_name(void);
|
|
void get_cpu_temperature(void);
|
|
|
|
#endif
|
|
#endif
|