[all] refactor cpuInfo function names

This commit is contained in:
Geoffrey McRae
2023-11-19 01:22:09 +11:00
parent 750cab83a3
commit 5d4c1d348c
6 changed files with 11 additions and 10 deletions

View File

@@ -24,8 +24,9 @@
#include <stddef.h>
#include <stdbool.h>
bool lgCPUInfo(char * model, size_t modelSize, int * procs, int * cores,
bool cpuInfo_get(char * model, size_t modelSize, int * procs, int * cores,
int * sockets);
void lgDebugCPU(void);
void cpuInfo_log(void);
#endif