libikarus/include/ikarus/global.h
folling 52580a4382
finalise interface & documentation
Signed-off-by: Folling <mail@folling.io>
2025-04-15 12:10:38 +02:00

16 lines
403 B
C

#pragma once
/// \file memory.h
/// \author Folling <folling@ikarus.world>
#include <ikarus/macros.h>
/// \addtogroup global Global
/// \brief Information relevant to the entire library.
/// @{
/// \brief Frees a pointer allocated by ikarus. Every pointer returned by a function must be freed using this function unless
/// explicitly stated otherwise.
IKA_API void ikarus_free(void * ptr);
/// @}