9 lines
162 B
C
9 lines
162 B
C
#ifndef WIKIPEDIA_H
|
|
#define WIKIPEDIA_H
|
|
|
|
#include "Infobox.h"
|
|
|
|
InfoBox fetch_wiki_data(char *api_url);
|
|
char *construct_wiki_url(const char *search_term);
|
|
|
|
#endif
|