1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00
elinks/src/ecmascript/timer.h

21 lines
313 B
C
Raw Normal View History

2021-12-01 13:27:50 -05:00
#ifndef EL__ECMASCRIPT_TIMER_H
#define EL__ECMASCRIPT_TIMER_H
2023-11-27 09:08:20 -05:00
#include <stdbool.h>
2023-03-31 12:45:50 -04:00
#ifdef __cplusplus
extern "C" {
#endif
2021-12-01 13:27:50 -05:00
struct timer;
2023-03-31 12:45:50 -04:00
void add_to_map_timer(struct timer *timer);
void del_from_map_timer(struct timer *timer);
bool found_in_map_timer(struct timer *timer);
2021-12-01 13:27:50 -05:00
2023-03-31 12:45:50 -04:00
#ifdef __cplusplus
2021-12-01 13:27:50 -05:00
}
2023-03-31 12:45:50 -04:00
#endif
2021-12-01 13:27:50 -05:00
#endif