.. Most of our documentation is generated from our source code comments, please head to github.com/cee-studio/orca if you want to contribute! The following files contains the documentation used to generate this page: - discord.h (for public datatypes) - discord-internal.h (for private datatypes) - specs/discord/ (for generated datatypes) ========================================== discord_cleanup - cleanup a Discord client ========================================== .. doxygenfunction:: discord_cleanup Example ------- .. code:: c void on_ready(struct discord *client) { log_info("Up and running!"); } int main(void) { struct discord *client = discord_init(BOT_TOKEN); discord_set_on_ready(client, &on_ready); discord_run(client); discord_cleanup(client); }