blob: 862edbad7a395514bd86c02f24e9942066f0e290 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef DICTIONARY_H
#define DICTIONARY_H
#include "Infobox.h"
InfoBox fetch_dictionary_data(const char *word);
char *construct_dictionary_url(const char *word);
int is_dictionary_query(const char *query);
#endif
|