Files
2025-01-12 18:08:57 +01:00

14 lines
248 B
C++

#pragma once
#include <stdint.h>
class LinuxHelper
{
public:
static uint32_t getAvailableMem(void);
static uint32_t getFreeMem(void);
static uint32_t getTotalMem(void);
protected:
static uint32_t getMem(const char *entry);
};