11 lines
164 B
C
11 lines
164 B
C
#ifndef _DATETIME_H
|
|
#define _DATETIME_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define DATETIME_BUFFER_SIZE 32
|
|
|
|
bool datetime_start();
|
|
void datetime_stop();
|
|
|
|
#endif // _DATETIME_H
|