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.
1 parent 179af6d commit b713629Copy full SHA for b713629
src/utils.h
@@ -8,6 +8,7 @@
8
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
9
10
#define MAX(a,b) ((a) > (b) ? (a) : (b))
11
+#define MIN(a,b) ((a) < (b) ? (a) : (b))
12
13
int
14
timespan_to_string(
0 commit comments