#ifndef hal_boot_params_boot_params_h #define hal_boot_params_boot_params_h /* Cesar project {{{ * * Copyright (C) 2011 Spidcom * * <<>> * * }}} */ /** * \file hal/boot_params/boot_params.h * \brief Public interface for users of boot parameters. * \ingroup hal_boot_params * */ #include "common/module.h" #if MODULE_INCLUDED (hal_boot_params) BEGIN_DECLS /** * Process the boot parameters. */ void boot_params_process (void); END_DECLS #else #define boot_params_process() ((void) 0) #endif /* MODULE_INCLUDED (hal_boot_params) */ #endif /* hal_boot_params_boot_params_h */