// This file is where you export all external module interfaces (i.e. // interfaces required by other modules) #ifndef __EXAMPLE_EXAMPLE_H #define __EXAMPLE_EXAMPLE_H /** * @brief Example Function * * Some more details on the example function. * * @return 0 on success, otherwise a failure code. * */ uint64_t example1_function(); /** * @brief Example of creating an error log function * * @return void * */ void example2_create_errorlog_function(); #endif