libikarus/include/ikarus/global.h
Folling 7a7f7462a4
update sqlitecpp & merge property settings into properties
Signed-off-by: Folling <mail@folling.io>
2025-01-01 14:07:47 +01:00

20 lines
441 B
C

#pragma once
/// \file global.h
/// \author Folling <folling@ikarus.world>
#include <ikarus/macros.h>
/// \defgroup global Global
/// \brief Information relevant to the entire library.
/// @{
IKARUS_BEGIN_HEADER
/// \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);
IKARUS_END_HEADER
/// @}