1 /* 2 * Copyright (c) 2017 Oticon A/S 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef _FAKE_TIMER_H 8 #define _FAKE_TIMER_H 9 10 #include "bs_types.h" 11 12 #ifdef __cplusplus 13 extern "C"{ 14 #endif 15 16 void fake_timer_init(); 17 void fake_timer_cleanup(void); 18 void fake_timer_wake_in_time(bs_time_t time); 19 void fake_timer_triggered(void); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif 26