#pragma once /// \file global.h /// \author Folling #include /// \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 /// @}