diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-06-20 09:02:43 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-06-20 09:02:43 +0000 |
commit | 566b7539fcaf9c455da665cb641016d2cfbb1b47 (patch) | |
tree | eb12baa08d99313d6da7eb8c1be17c5e447f1586 /src/regex/gnunet-regex-simulation-profiler.c | |
parent | de9409f80dbfc5cc61a28316b271600e9da95cdc (diff) |
renaming symbols from libgnunetregextest to have the prefix REGEX_TEST
Diffstat (limited to 'src/regex/gnunet-regex-simulation-profiler.c')
-rw-r--r-- | src/regex/gnunet-regex-simulation-profiler.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/regex/gnunet-regex-simulation-profiler.c b/src/regex/gnunet-regex-simulation-profiler.c index b3d1ff8737..dcb6c02f69 100644 --- a/src/regex/gnunet-regex-simulation-profiler.c +++ b/src/regex/gnunet-regex-simulation-profiler.c @@ -335,7 +335,7 @@ return_ok (void *cls, unsigned int num_values, MYSQL_BIND * values) static void regex_iterator (void *cls, const struct GNUNET_HashCode *key, const char *proof, int accepting, unsigned int num_edges, - const struct REGEX_ITERNAL_Edge *edges) + const struct REGEX_INTERNAL_Edge *edges) { unsigned int i; int result; @@ -460,10 +460,10 @@ regex_iterator (void *cls, const struct GNUNET_HashCode *key, const char *proof, static int announce_regex (const char *regex) { - struct REGEX_ITERNAL_Automaton *dfa; + struct REGEX_INTERNAL_Automaton *dfa; dfa = - REGEX_ITERNAL_construct_dfa (regex, strlen (regex), max_path_compression); + REGEX_INTERNAL_construct_dfa (regex, strlen (regex), max_path_compression); if (NULL == dfa) { @@ -473,9 +473,9 @@ announce_regex (const char *regex) return GNUNET_SYSERR; } - REGEX_ITERNAL_iterate_all_edges (dfa, ®ex_iterator, NULL); + REGEX_INTERNAL_iterate_all_edges (dfa, ®ex_iterator, NULL); - REGEX_ITERNAL_automaton_destroy (dfa); + REGEX_INTERNAL_automaton_destroy (dfa); return GNUNET_OK; } |