aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-14 01:29:28 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-14 01:29:28 +0100
commit0dd7819bebd1e2e66f19a38b245292812721c261 (patch)
tree4ad22275414fb4923e18309526faf346449aad9d /include
parentadd slibc-human.h and implement escape and unescape (diff)
downloadslibc-0dd7819bebd1e2e66f19a38b245292812721c261.tar.gz
slibc-0dd7819bebd1e2e66f19a38b245292812721c261.tar.bz2
slibc-0dd7819bebd1e2e66f19a38b245292812721c261.tar.xz
m doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'include')
-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,