1 2 3 4 5 6 7 8 9 10 11 12 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); }