diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-04-01 14:17:28 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-04-01 14:17:28 +0500 |
commit | 64a5ca1c8891968bee33da48c18719e344b184ac (patch) | |
tree | 3ccf04f1bc69fe8f7036ae58dba5ef66f4b2993e /strings/ctype-bin.c | |
parent | 7f3ef183d341aec17d48a7c1d22a76ab0cda5969 (diff) | |
download | mariadb-git-64a5ca1c8891968bee33da48c18719e344b184ac.tar.gz |
my_strncasecmp() is not used anymore. Use my_strncoll() instead.
Diffstat (limited to 'strings/ctype-bin.c')
-rw-r--r-- | strings/ctype-bin.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/strings/ctype-bin.c b/strings/ctype-bin.c index 432550e4e4c..568165896ca 100644 --- a/strings/ctype-bin.c +++ b/strings/ctype-bin.c @@ -118,12 +118,6 @@ static int my_strcasecmp_bin(CHARSET_INFO * cs __attribute__((unused)), return strcmp(s,t); } -static int my_strncasecmp_bin(CHARSET_INFO * cs __attribute__((unused)), - const char *s, const char *t, uint len) -{ - return memcmp(s,t,len); -} - static int my_mb_wc_bin(CHARSET_INFO *cs __attribute__((unused)), my_wc_t *wc, const unsigned char *str, @@ -301,7 +295,6 @@ CHARSET_INFO my_charset_bin = my_caseup_bin, /* caseup */ my_casedn_bin, /* casedn */ my_strcasecmp_bin, /* strcasecmp */ - my_strncasecmp_bin, /* strncasecmp */ my_hash_sort_bin, /* hash_sort */ (char) 255, /* max_sort_char */ my_snprintf_8bit, /* snprintf */ |