14 lines
184 B
C
14 lines
184 B
C
#ifndef INFOBOX_H
|
|
#define INFOBOX_H
|
|
|
|
typedef struct {
|
|
char *title;
|
|
char *thumbnail_url;
|
|
char *extract;
|
|
char *url;
|
|
} InfoBox;
|
|
|
|
void free_infobox(InfoBox *info);
|
|
|
|
#endif
|