Files
fastfetch/src/detection/memory/memory.h
T
2022-09-05 10:57:09 +02:00

18 lines
299 B
C

#pragma once
#ifndef FF_INCLUDED_detection_memory_memory
#define FF_INCLUDED_detection_memory_memory
#include "fastfetch.h"
typedef struct FFMemoryResult
{
uint64_t bytesUsed;
uint64_t bytesTotal;
uint8_t percentage;
} FFMemoryResult;
const FFMemoryResult* ffDetectMemory();
#endif