aboutsummaryrefslogtreecommitdiff
path: root/src/regex/regex_block_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-07-02 14:38:54 +0000
committerChristian Grothoff <christian@grothoff.org>2013-07-02 14:38:54 +0000
commit15a8471c0edc4134f57c19884c033a63f49a04dd (patch)
tree4465bb0b1198f1869163706e6cfeeaba5ff3fabf /src/regex/regex_block_lib.h
parent2a453cf6aec60af36f655bd053847ab15ff7ae8f (diff)
downloadgnunet-15a8471c0edc4134f57c19884c033a63f49a04dd.tar.gz
gnunet-15a8471c0edc4134f57c19884c033a63f49a04dd.zip
-implementing regex test
Diffstat (limited to 'src/regex/regex_block_lib.h')
-rw-r--r--src/regex/regex_block_lib.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regex/regex_block_lib.h b/src/regex/regex_block_lib.h
index 7c48bbefd..80c2ea2af 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,
156 * Test if this block is marked as being an accept state. 156 * Test if this block is marked as being an accept state.
157 * 157 *
158 * @param block block to test 158 * @param block block to test
159 * @param size number of bytes in block
159 * @return GNUNET_YES if the block is accepting, GNUNET_NO if not 160 * @return GNUNET_YES if the block is accepting, GNUNET_NO if not
160 */ 161 */
161int 162int
162GNUNET_BLOCK_is_accepting (const struct RegexBlock *block); 163GNUNET_BLOCK_is_accepting (const struct RegexBlock *block,
164 size_t block_len);
163 165
164 166
165/** 167/**