/*
* Copyright (c) 2013-2015 Vladimir Alemasov
* All rights reserved
*
* This program and the accompanying materials are distributed under 
* the terms of GNU General Public License version 2 
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*/

#ifndef THREAD_CRON_H_
#define THREAD_CRON_H_

void thread_cron_start(void);
void thread_cron_stop(void);
void thread_cron_trigger_add(const char *cronstr, uint32_t id, uint32_t next_id);
void thread_cron_remove_all(void);

#endif /* THREAD_CRON_H_ */
