1
0
Fork 0
forked from len0rd/rockbox

Const policed pointer arguments to functions, part 2

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4996 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2004-08-17 01:45:48 +00:00
parent c76c568b35
commit 0ceaa5e365
17 changed files with 55 additions and 51 deletions

View file

@ -25,7 +25,7 @@
#include "time.h"
struct tm *get_time(void);
int set_time(struct tm *tm);
bool valid_time(struct tm *tm);
int set_time(const struct tm *tm);
bool valid_time(const struct tm *tm);
#endif /* _TIMEFUNCS_H_ */