blob: f258fbe22450aed0c8c0d3d5eda09677c15c7a69 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef CURRENCYCONVERSION_H
#define CURRENCYCONVERSION_H
#include "Infobox.h"
int is_currency_query(const char *query);
InfoBox fetch_currency_data(const char *query);
#endif
|