mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
14 lines
268 B
C
14 lines
268 B
C
#ifndef __UARCH__
|
|
#define __UARCH__
|
|
|
|
#include <stdint.h>
|
|
#include "riscv.h"
|
|
|
|
struct uarch;
|
|
|
|
char* get_str_uarch(struct cpuInfo* cpu);
|
|
void free_uarch_struct(struct uarch* arch);
|
|
struct uarch* get_uarch_from_cpuinfo_str(char* cpuinfo_str, struct cpuInfo* cpu);
|
|
|
|
#endif
|