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.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef INFOBOX_H
#define INFOBOX_H
typedef struct {
char *title;
char *thumbnail_url;
char *extract;
char *url;
} InfoBox;
void free_infobox(InfoBox *info);
#endif