mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
20 lines
498 B
C
20 lines
498 B
C
#ifndef __01h__
|
|
#define __01h__
|
|
|
|
#define STRING_YES "Yes"
|
|
#define STRING_NO "No"
|
|
struct cpuInfo;
|
|
|
|
struct cpuInfo* getCPUInfo();
|
|
void debugCpuInfo(struct cpuInfo* cpu);
|
|
|
|
char* getString_NumberCores(struct cpuInfo* cpu);
|
|
char* getPeakPerformance(struct cpuInfo* cpu, long freq);
|
|
char* getString_AVX(struct cpuInfo* cpu);
|
|
char* getString_SSE(struct cpuInfo* cpu);
|
|
char* getString_FMA(struct cpuInfo* cpu);
|
|
char* getString_AES(struct cpuInfo* cpu);
|
|
char* getString_SHA(struct cpuInfo* cpu);
|
|
|
|
#endif
|