Files
omnisearch/src/Infobox/Infobox.h
2026-02-23 00:57:21 -05:00

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