finalise interface & documentation

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
folling 2023-11-06 13:14:39 +01:00 committed by Folling
parent c5157bd849
commit 52580a4382
Signed by: folling
SSH key fingerprint: SHA256:S9qEx5WCFFLK49tE/LKnKuJYM5sw+++Dn6qJbbyxnCY
56 changed files with 2074 additions and 780 deletions

16
include/ikarus/global.h Normal file
View file

@ -0,0 +1,16 @@
#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);
/// @}