We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
macros.h
1 parent 8837e04 commit 2d5c329Copy full SHA for 2d5c329
libs/macros.h
@@ -2,6 +2,10 @@
2
#ifndef LIBS_MACROS_H_INCLUDED
3
#define LIBS_MACROS_H_INCLUDED
4
5
+/**
6
+ * @def MIN
7
+ * @brief Returns the minimum value between two values.
8
+ */
9
#define MIN(A, B) ((A) < (B) ? (A) : (B))
10
11
#endif // LIBS_MACROS_H_INCLUDED
0 commit comments