about summary refs log tree commit diff
path: root/include/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index 37a2a794..324435b3 100644
--- a/include/config.h
+++ b/include/config.h
@@ -234,6 +234,8 @@
    100,          /* One-off with common buffer size         */ \
    127           /* Overflow signed 8-bit when incremented  */
 
+#define INTERESTING_8_LEN 9
+
 #define INTERESTING_16 \
   -32768,        /* Overflow signed 16-bit when decremented */ \
   -129,          /* Overflow signed 8-bit                   */ \
@@ -246,6 +248,8 @@
    4096,         /* One-off with common buffer size         */ \
    32767         /* Overflow signed 16-bit when incremented */
 
+#define INTERESTING_16_LEN 10
+
 #define INTERESTING_32 \
   -2147483648LL, /* Overflow signed 32-bit when decremented */ \
   -100663046,    /* Large negative number (endian-agnostic) */ \
@@ -256,6 +260,8 @@
    100663045,    /* Large positive number (endian-agnostic) */ \
    2147483647    /* Overflow signed 32-bit when incremented */
 
+#define INTERESTING_32_LEN 8
+
 /***********************************************************
  *                                                         *
  *  Really exotic stuff you probably don't want to touch:  *