change clang-format

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
Folling 2023-12-28 16:52:05 +01:00 committed by Folling
parent 0496ea7259
commit 910f337d02
No known key found for this signature in database
33 changed files with 217 additions and 254 deletions

View file

@ -144,9 +144,8 @@ IKA_API size_t ikarus_project_get_blueprint_count(IkarusProject const * project)
/// \param blueprints_out The buffer to write the blueprints to.
/// \pre \li Must not be null.
/// \param blueprints_out_size The size of the buffer.
IKA_API void ikarus_project_get_blueprints(
IkarusProject const * project, struct IkarusBlueprint ** blueprints_out, size_t blueprints_out_size
);
IKA_API void
ikarus_project_get_blueprints(IkarusProject const * project, struct IkarusBlueprint ** blueprints_out, size_t blueprints_out_size);
/// \brief Gets the entity root folder of a project.
/// \param project The project to get the entity root folder of.
@ -170,9 +169,7 @@ IKA_API size_t ikarus_project_get_entity_count(IkarusProject const * project);
/// \param entities_out The buffer to write the entities to.
/// \pre \li Must not be null.
/// \param entities_out_size The size of the buffer.
IKA_API void ikarus_project_get_entities(
IkarusProject const * project, struct IkarusEntity ** entities_out, size_t entities_out_size
);
IKA_API void ikarus_project_get_entities(IkarusProject const * project, struct IkarusEntity ** entities_out, size_t entities_out_size);
IKARUS_END_HEADER