mirror of
https://github.com/gungwald/alarm-clock-6502.git
synced 2024-10-07 18:54:39 +00:00
11 lines
150 B
C
11 lines
150 B
C
#ifndef NOSLOTCLOCK_H
|
|
#define NOSLOTCLOCK_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern bool load_driver(void);
|
|
extern struct tm *read_time(struct tm *t);
|
|
|
|
#endif
|
|
|