aboutsummaryrefslogtreecommitdiff
path: root/timer.h
blob: 2f2e4b35f68644b1ed0da71233c19c1547dfb38b (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <stdint.h>

struct timer {
	void (*init)(void);
	uint16_t (*get_time)(void);
};

void get_system_timer(struct timer *);