From 3a420d5c6cfded6a04f4c78aa98c5d4ae7de8ca1 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Wed, 24 Nov 2021 12:14:17 -0500 Subject: add header guards, move declarations to source file --- movement/lib/TOTP-MCU/TOTP.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'movement/lib/TOTP-MCU/TOTP.h') diff --git a/movement/lib/TOTP-MCU/TOTP.h b/movement/lib/TOTP-MCU/TOTP.h index 13715f4d..cfef38b1 100644 --- a/movement/lib/TOTP-MCU/TOTP.h +++ b/movement/lib/TOTP-MCU/TOTP.h @@ -1,3 +1,6 @@ +#ifndef TOTP_H_ +#define TOTP_H_ + #include #include "time.h" @@ -6,3 +9,5 @@ void setTimezone(uint8_t timezone); uint32_t getCodeFromTimestamp(uint32_t timeStamp); uint32_t getCodeFromTimeStruct(struct tm time); uint32_t getCodeFromSteps(uint32_t steps); + +#endif // TOTP_H_ -- cgit v1.2.3