From 3f52b9b11a1ca77132d09cc3db2684215f5ac694 Mon Sep 17 00:00:00 2001 From: Shivam Chaudhary Date: Thu, 9 Feb 2023 10:51:15 +0100 Subject: [PATCH] Add information about GBP in header --- src/currencyExchange.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/currencyExchange.h b/src/currencyExchange.h index 406b0ed..fe80c35 100644 --- a/src/currencyExchange.h +++ b/src/currencyExchange.h @@ -1,5 +1,7 @@ #include #define CURRENT_USD_RATE_OF_ONE_EURO 1.07 +#define CURRENT_GBP_RATE_OF_ONE_EURO 0.89 -float toUSD(float euro); \ No newline at end of file +float toUSD(float euro); +float toGBP(float euro); \ No newline at end of file