1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/src/ecmascript/timer.h
2023-11-27 15:08:20 +01:00

21 lines
313 B
C

#ifndef EL__ECMASCRIPT_TIMER_H
#define EL__ECMASCRIPT_TIMER_H
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
struct timer;
void add_to_map_timer(struct timer *timer);
void del_from_map_timer(struct timer *timer);
bool found_in_map_timer(struct timer *timer);
#ifdef __cplusplus
}
#endif
#endif