Skip to content

Commit 2d5c329

Browse files
committed
doc: create macros.h documentation
1 parent 8837e04 commit 2d5c329

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

libs/macros.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
#ifndef LIBS_MACROS_H_INCLUDED
33
#define LIBS_MACROS_H_INCLUDED
44

5+
/**
6+
* @def MIN
7+
* @brief Returns the minimum value between two values.
8+
*/
59
#define MIN(A, B) ((A) < (B) ? (A) : (B))
610

711
#endif // LIBS_MACROS_H_INCLUDED

0 commit comments

Comments
 (0)