mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-24 23:40:39 +01:00
12 lines
173 B
C
12 lines
173 B
C
#include <stdint.h>
|
|
|
|
struct uarch {
|
|
//MICROARCH uarch;
|
|
char* uarch_str;
|
|
int32_t process; // measured in nanometers
|
|
};
|
|
|
|
void free_uarch_struct(struct uarch* arch) {
|
|
|
|
}
|