mirror of
https://github.com/mintycube/dwmblocks.git
synced 2024-10-22 12:05:47 +00:00
15 lines
238 B
C
15 lines
238 B
C
|
#pragma once
|
||
|
|
||
|
#include <signal.h>
|
||
|
|
||
|
#define TIMER_SIGNAL SIGALRM
|
||
|
|
||
|
typedef struct {
|
||
|
unsigned int time;
|
||
|
const unsigned int tick;
|
||
|
const unsigned int reset_value;
|
||
|
} timer;
|
||
|
|
||
|
timer timer_new(void);
|
||
|
int timer_arm(timer *const timer);
|