/* * Copyright (C) 2014 Oliver Hahm * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup rpl * @{ * @file of0.h * @brief Objective Function Zero. * * Header-file, which defines all functions for the implementation of Objective Function Zero. * * @author Eric Engel * @} */ #ifndef OF0_H #define OF0_H #include "rpl/rpl_structs.h" #include "rpl/rpl_config.h" #ifdef __cplusplus extern "C" { #endif rpl_of_t *rpl_get_of0(void); #ifdef __cplusplus } #endif #endif /* OF0_H */