mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-17 08:03:45 +08:00

Documentation is provided to clarify how to write doxygen documentation for RT-Thread. This document is also integrated as part of RT-Thread doxygen documentation. An example is also provided. The original README.md is removed and integrated into this document. Updated github actions for doxygen too. Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
8 lines
208 B
C
8 lines
208 B
C
#ifndef _DOXYGEN_EXAMPLE_FUNCTION_H_
|
|
#define _DOXYGEN_EXAMPLE_FUNCTION_H_
|
|
|
|
void doxygen_example_func_foo(int a, int b);
|
|
int doxygen_example_func_bar(int a, int* b);
|
|
|
|
#endif /* _DOXYGEN_EXAMPLE_FUNCTION_H_ */
|