ram.h 215 B

12345678910111213
  1. #ifndef ARK_SYS_RAM_H
  2. #define ARK_SYS_RAM_H
  3. #include <stdint.h>
  4. typedef struct {
  5. uint64_t total_mb;
  6. uint64_t used_mb;
  7. } ark_ram_info_t;
  8. ark_ram_info_t ark_sys_ram_get_info(void);
  9. #endif // ARK_SYS_RAM_H