blob: b22c38da263d9e4991b09ad9443d9d71de68f1a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// 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
|