aboutsummaryrefslogtreecommitdiff
path: root/include/apos/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/apos/utils.h')
-rw-r--r--include/apos/utils.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/apos/utils.h b/include/apos/utils.h
index e09a35f..25f10b0 100644
--- a/include/apos/utils.h
+++ b/include/apos/utils.h
@@ -1,6 +1,11 @@
#ifndef APOS_UTILS_H
#define APOS_UTILS_H
+/**
+ * @file utils.
+ * Misc utils and helpers.
+ */
+
#define ABS(a) (a < 0 ? -a : a)
#define MAX(a, b) ((a) >= (b) ? (a) : (b))