#ifndef common_module_h #define common_module_h /* Cesar project {{{ * * Copyright (C) 2009 Spidcom * * <<>> * * }}} */ /** * \file common/module.h * \brief Module header. * \ingroup common * * Gives information about built modules. */ #include "module_config.h" /** * Return true if the given module was included in build. * \param module module to test, with underscores * \return true if included (to be used as preprocessor conditional) */ #define MODULE_INCLUDED(module) \ defined (_MODULE_INCLUDED_ ## module) #endif /* common_module_h */