This commit is contained in:
frosty
2026-02-23 00:57:21 -05:00
commit b280ab6bcd
37 changed files with 2787 additions and 0 deletions

13
src/Infobox/Infobox.c Normal file
View File

@@ -0,0 +1,13 @@
#include "Infobox.h"
#include <stdlib.h>
void free_infobox(InfoBox *info) {
if (info->title)
free(info->title);
if (info->thumbnail_url)
free(info->thumbnail_url);
if (info->extract)
free(info->extract);
if (info->url)
free(info->url);
}