aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/alarm.h
blob: d37ff0c1bf6ea6436ee1c4ea3db82fab8a94d591 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ALARM_H
#define ALARM_H

#include <time.h>

typedef void (*AlarmFunction)(time_t time, void *closuse);

void alarm_init    (void);
void alarm_add     (time_t alarm_time, AlarmFunction fn, void *closure);
int  alarm_kill    (void *closure);

#endif