dwmblocks/include/timer.h
2023-10-25 20:00:08 +05:30

17 lines
313 B
C

#pragma once
#include <signal.h>
#include "block.h"
#define TIMER_SIGNAL SIGALRM
typedef struct {
unsigned int time;
const unsigned int tick;
const unsigned int reset_value;
} timer;
timer timer_new(const block *const blocks, const unsigned short block_count);
int timer_arm(timer *const timer);