chiark / gitweb /
macro: document that DECIMAL_STR_MAX contains space for the trailing NUL byte
authorLennart Poettering <lennart@poettering.net>
Mon, 2 Feb 2015 20:28:19 +0000 (21:28 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 2 Feb 2015 20:28:19 +0000 (21:28 +0100)
src/shared/macro.h

index e88630fa04deab1dbce89a0f2668b1758637f0b6..7f89951d62e00ee5f68809e017c2572f1e174770 100644 (file)
@@ -383,7 +383,8 @@ do {                                                                    \
 
 /* Returns the number of chars needed to format variables of the
  * specified type as a decimal string. Adds in extra space for a
- * negative '-' prefix. */
+ * negative '-' prefix (hence works correctly on signed
+ * types). Includes space for the trailing NUL. */
 #define DECIMAL_STR_MAX(type)                                           \
         (2+(sizeof(type) <= 1 ? 3 :                                     \
             sizeof(type) <= 2 ? 5 :                                     \