tmp
Some checks failed
Windows / build (push) Has been cancelled
CMake on a single platform / build (push) Has been cancelled
CMake / build (push) Has been cancelled

This commit is contained in:
Шурупов Илья Викторович 2025-11-24 18:24:00 +03:00
parent a7b9feaedc
commit 0f15c37c2e
10 changed files with 522 additions and 1 deletions

View file

@ -0,0 +1,9 @@
#include <cstddef>
#include <utility>
namespace lrbm {
std::pair<void*, size_t> create_linear_ring(size_t size);
void destroy_linear_ring(void* base, size_t size);
void test();
}