aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_regex_lib.h
diff options
context:
space:
mode:
authorMaximilian Szengel <gnunet@maxsz.de>2012-03-28 19:27:29 +0000
committerMaximilian Szengel <gnunet@maxsz.de>2012-03-28 19:27:29 +0000
commitffad59b491bb53819aa1ee258dc9dfb03f874cec (patch)
treebbac1b0a3683206294f8548d7982dfd6330d2fc5 /src/include/gnunet_regex_lib.h
parentc722eb033c1295d88a7c3c7366625207b7ea6627 (diff)
downloadgnunet-ffad59b491bb53819aa1ee258dc9dfb03f874cec.tar.gz
gnunet-ffad59b491bb53819aa1ee258dc9dfb03f874cec.zip
doxygen fix
Diffstat (limited to 'src/include/gnunet_regex_lib.h')
-rw-r--r--src/include/gnunet_regex_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_regex_lib.h b/src/include/gnunet_regex_lib.h
index d95ad3808..3a56872c0 100644
--- a/src/include/gnunet_regex_lib.h
+++ b/src/include/gnunet_regex_lib.h
@@ -48,7 +48,7 @@ struct GNUNET_REGEX_Automaton;
48 * @param regex regular expression string 48 * @param regex regular expression string
49 * @param len length of the string 49 * @param len length of the string
50 * 50 *
51 * @return NFA.Needs to be freed using GNUNET_REGEX_destroy_automaton 51 * @return NFA, needs to be freed using GNUNET_REGEX_destroy_automaton
52 */ 52 */
53struct GNUNET_REGEX_Automaton * 53struct GNUNET_REGEX_Automaton *
54GNUNET_REGEX_construct_nfa(const char *regex, const size_t len); 54GNUNET_REGEX_construct_nfa(const char *regex, const size_t len);
@@ -59,7 +59,7 @@ GNUNET_REGEX_construct_nfa(const char *regex, const size_t len);
59 * @param regex regular expression string 59 * @param regex regular expression string
60 * @param len length of the regular expression 60 * @param len length of the regular expression
61 * 61 *
62 * @return DFA. Needs to be freed using GNUNET_REGEX_destroy_automaton 62 * @return DFA, needs to be freed using GNUNET_REGEX_destroy_automaton
63 */ 63 */
64struct GNUNET_REGEX_Automaton * 64struct GNUNET_REGEX_Automaton *
65GNUNET_REGEX_construct_dfa (const char *regex, const size_t len); 65GNUNET_REGEX_construct_dfa (const char *regex, const size_t len);