mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
15 lines
202 B
C
15 lines
202 B
C
#ifndef __SOC__
|
|
#define __SOC__
|
|
|
|
typedef int SOC;
|
|
|
|
struct system_on_chip {
|
|
SOC soc;
|
|
char* raw_name;
|
|
};
|
|
|
|
struct system_on_chip* get_soc();
|
|
char* get_soc_name(struct system_on_chip* soc);
|
|
|
|
#endif
|