2002-11-20 00:00:25 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2002-11-20 00:00:25 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _TIMEFUNCS_H_
|
|
|
|
#define _TIMEFUNCS_H_
|
|
|
|
|
|
|
|
#include "config.h"
|
2004-04-20 10:23:57 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include "time.h"
|
2002-11-20 00:00:25 +00:00
|
|
|
|
|
|
|
struct tm *get_time(void);
|
2004-08-17 01:45:48 +00:00
|
|
|
int set_time(const struct tm *tm);
|
2011-12-15 21:38:23 +00:00
|
|
|
#if CONFIG_RTC
|
2004-08-17 01:45:48 +00:00
|
|
|
bool valid_time(const struct tm *tm);
|
2009-08-11 19:30:19 +00:00
|
|
|
void set_day_of_week(struct tm *tm);
|
2011-12-15 21:38:23 +00:00
|
|
|
#endif
|
2002-11-20 00:00:25 +00:00
|
|
|
|
|
|
|
#endif /* _TIMEFUNCS_H_ */
|
2009-09-26 14:58:32 +00:00
|
|
|
|