summaryrefslogtreecommitdiffstats
path: root/common/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/parse.h')
-rw-r--r--common/parse.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/parse.h b/common/parse.h
index 3ec37104..69a57ff8 100644
--- a/common/parse.h
+++ b/common/parse.h
@@ -56,6 +56,9 @@ struct stream
#define s_check_rem(s, n) ((s)->p + (n) <= (s)->end)
/******************************************************************************/
+#define s_check_rem_out(s, n) ((s)->p + (n) <= (s)->data + (s)->size)
+
+/******************************************************************************/
#define s_check_end(s) ((s)->p == (s)->end)
/******************************************************************************/