aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/slibc-human.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/slibc-human.h b/include/slibc-human.h
index 13d299a..665b86c 100644
--- a/include/slibc-human.h
+++ b/include/slibc-human.h
@@ -88,16 +88,25 @@ enum humansize_mode
{
/**
* 'k' is 1000.
+ *
+ * Cannot be combined with `HUMANSIZE_IEC`
+ * or `HUMANSIZE_IEC_EXPLICIT`.
*/
HUMANSIZE_SI = 1,
/**
* 'K' is 1024.
+ *
+ * Cannot be combined with `HUMANSIZE_SI`
+ * or `HUMANSIZE_IEC_EXPLICIT`.
*/
HUMANSIZE_IEC = 2,
/**
* 'Ki' is 1024.
+ *
+ * Cannot be combined with `HUMANSIZE_SI`
+ * or `HUMANSIZE_IEC`.
*/
HUMANSIZE_IEC_EXPLICIT = 4,