#ifndef BUFFER_H #define BUFFER_H #include struct Buffer_t { uint32_t size; void* ptr; }; #endif