diff options
Diffstat (limited to 'src/regex/regex_block_lib.h')
-rw-r--r-- | src/regex/regex_block_lib.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regex/regex_block_lib.h b/src/regex/regex_block_lib.h index 7c48bbefdd..80c2ea2af3 100644 --- a/src/regex/regex_block_lib.h +++ b/src/regex/regex_block_lib.h @@ -156,10 +156,12 @@ REGEX_BLOCK_get_key (const struct RegexBlock *block, * Test if this block is marked as being an accept state. * * @param block block to test + * @param size number of bytes in block * @return GNUNET_YES if the block is accepting, GNUNET_NO if not */ int -GNUNET_BLOCK_is_accepting (const struct RegexBlock *block); +GNUNET_BLOCK_is_accepting (const struct RegexBlock *block, + size_t block_len); /** |