mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
18 lines
299 B
C
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
|