1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/** * @file buf.h * @author your name (you@domain.com) * @brief * @version 0.1 * @date 2024-04-28 * * @copyright Copyright (c) 2024 * */ #pragma once #include "defines.h" typedef struct bytebuffer { u8* buf; size_t size; } bytebuffer;