diff options
Diffstat (limited to 'include/apos/utils.h')
| -rw-r--r-- | include/apos/utils.h | 5 |
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)) |
