2021-11-12 04:00:03 -05:00
|
|
|
#ifndef _DATETIME_H
|
|
|
|
#define _DATETIME_H
|
|
|
|
|
2021-11-12 04:05:43 -05:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2021-11-12 06:32:01 -05:00
|
|
|
#define DATETIME_BUFFER_SIZE 32
|
|
|
|
|
2021-11-12 04:05:43 -05:00
|
|
|
bool datetime_start();
|
2021-11-12 04:00:03 -05:00
|
|
|
void datetime_stop();
|
|
|
|
|
|
|
|
#endif // _DATETIME_H
|