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/regex_test_lib.c | |
parent | de9409f80dbfc5cc61a28316b271600e9da95cdc (diff) |
renaming symbols from libgnunetregextest to have the prefix REGEX_TEST
Diffstat (limited to 'src/regex/regex_test_lib.c')
-rw-r--r-- | src/regex/regex_test_lib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/regex/regex_test_lib.c b/src/regex/regex_test_lib.c index dbb8643704..d39db7ef84 100644 --- a/src/regex/regex_test_lib.c +++ b/src/regex/regex_test_lib.c @@ -305,7 +305,7 @@ regex_ctx_destroy (struct RegexCombineCtx *ctx) * This function DOES NOT support arbitrary regex combining. */ char * -REGEX_ITERNAL_combine (char * const regexes[]) +REGEX_TEST_combine (char * const regexes[]) { unsigned int i; char *combined; @@ -333,15 +333,15 @@ REGEX_ITERNAL_combine (char * const regexes[]) /** * Read a set of regexes from a file, one per line and return them in an array - * suitable for REGEX_ITERNAL_combine. - * The array must be free'd using REGEX_ITERNAL_free_from_file. + * suitable for REGEX_TEST_combine. + * The array must be free'd using REGEX_TEST_free_from_file. * * @param filename Name of the file containing the regexes. * * @return A newly allocated, NULL terminated array of regexes. */ char ** -REGEX_ITERNAL_read_from_file (const char *filename) +REGEX_TEST_read_from_file (const char *filename) { struct GNUNET_DISK_FileHandle *f; unsigned int nr; @@ -421,7 +421,7 @@ REGEX_ITERNAL_read_from_file (const char *filename) * @param regexes NULL-terminated array of regexes. */ void -REGEX_ITERNAL_free_from_file (char **regexes) +REGEX_TEST_free_from_file (char **regexes) { unsigned int i; |