mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
17 lines
287 B
C
17 lines
287 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;
|
|
} FFMemoryResult;
|
|
|
|
const char* ffDetectMemory(FFMemoryResult* result);
|
|
|
|
#endif
|