mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
12 lines
279 B
C
12 lines
279 B
C
#pragma once
|
|
|
|
#include "fastfetch.h"
|
|
|
|
typedef struct FFCpuUsageInfo {
|
|
uint64_t inUseAll;
|
|
uint64_t totalAll;
|
|
} FFCpuUsageInfo;
|
|
const char* ffGetCpuUsageInfo(FFlist* cpuTimes);
|
|
|
|
const char* ffGetCpuUsageResult(FFCPUUsageOptions* options, FFlist* result); // list of double
|