mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
12 lines
279 B
C
12 lines
279 B
C
#ifndef __CPUFETCH_POWERPC__
|
|
#define __CPUFETCH_POWERPC__
|
|
|
|
#include "../common/cpu.h"
|
|
|
|
struct cpuInfo* get_cpu_info(void);
|
|
char* get_str_altivec(struct cpuInfo* cpu);
|
|
char* get_str_topology(struct topology* topo, bool dual_socket);
|
|
void print_debug(struct cpuInfo* cpu);
|
|
|
|
#endif
|