diff options
author | kent@mysql.com <> | 2005-09-29 02:08:24 +0200 |
---|---|---|
committer | kent@mysql.com <> | 2005-09-29 02:08:24 +0200 |
commit | 844d964f2d23e82697c0f3aed59dbf043f6e4128 (patch) | |
tree | 0554bc5de920ea134de4402fe122a1df5624513c /regex/reginit.c | |
parent | 7e6a78a1aea10b27d549c9b3210266c5e73a0cc9 (diff) | |
download | mariadb-git-844d964f2d23e82697c0f3aed59dbf043f6e4128.tar.gz |
Many files:
Prefix regex functions/types with "my_" as our
library is not compatible with normal regex lib.
my_regex.h:
Rename: regex/regex.h -> regex/my_regex.h
Diffstat (limited to 'regex/reginit.c')
-rw-r--r-- | regex/reginit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regex/reginit.c b/regex/reginit.c index 74ad3dc6de4..f0b53e64be3 100644 --- a/regex/reginit.c +++ b/regex/reginit.c @@ -7,7 +7,7 @@ static bool regex_inited=0; -void regex_init(CHARSET_INFO *cs) +void my_regex_init(CHARSET_INFO *cs) { char buff[CCLASS_LAST][256]; int count[CCLASS_LAST]; @@ -67,7 +67,7 @@ void regex_init(CHARSET_INFO *cs) return; } -void regex_end() +void my_regex_end() { if (regex_inited) { |