0e419987e4
simulator with the hope that once it works fine, we can remove the other two and only have one unified simulator. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8312 a1c6a512-1295-4272-9138-f99709370657
7 lines
164 B
C
7 lines
164 B
C
#include <time.h>
|
|
#include <stdbool.h>
|
|
|
|
/* struct tm defined */
|
|
struct tm *get_time(void);
|
|
int set_time(const struct tm *tm);
|
|
bool valid_time(const struct tm *tm);
|