diff options
Diffstat (limited to 'src/regex/regex_internal_lib.h')
-rw-r--r-- | src/regex/regex_internal_lib.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/src/regex/regex_internal_lib.h b/src/regex/regex_internal_lib.h index 7da08154d1..f8bf363443 100644 --- a/src/regex/regex_internal_lib.h +++ b/src/regex/regex_internal_lib.h @@ -29,6 +29,7 @@ #include "gnunet_util_lib.h" #include "gnunet_dht_service.h" #include "gnunet_statistics_service.h" +#include "regex_block_lib.h" #ifdef __cplusplus extern "C" @@ -46,23 +47,6 @@ struct REGEX_INTERNAL_Automaton; /** - * Edge representation. - */ -struct REGEX_INTERNAL_Edge -{ - /** - * Label of the edge. FIXME: might want to not consume exactly multiples of 8 bits, need length? - */ - const char *label; - - /** - * Destionation of the edge. - */ - struct GNUNET_HashCode destination; -}; - - -/** * Construct DFA for the given 'regex' of length 'len'. * * Path compression means, that for example a DFA o -> a -> b -> c -> o will be |