1
0
mirror of https://github.com/EnderIce2/Fennix.git synced 2025-07-20 03:31:43 +00:00
Files
Fennix/Kernel/include/bitmap.hpp

13 lines
206 B
C++

#pragma once
#include <types.h>
class Bitmap
{
public:
size_t Size;
uint8_t *Buffer;
bool operator[](uint64_t index);
bool Set(uint64_t index, bool value);
bool Get(uint64_t index);
};