diff options
author | bar@bar.mysql.r18.ru <> | 2003-10-15 17:34:28 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-10-15 17:34:28 +0500 |
commit | a001b71f20945ee1ec59acca751124dfcb33180a (patch) | |
tree | e5a807a679c0a09a244e903bac032a5755d33089 /include | |
parent | 9c2867c2d4cb38ce7a3d92aa08d9642d86938a4f (diff) | |
download | mariadb-git-a001b71f20945ee1ec59acca751124dfcb33180a.tar.gz |
ctype-simple.c, ctype-mb.c:
Win compilation problem fix
ctype-bin.c:
Win compilation problem fix
,
,
m_ctype.h:
Win compilation problem fix
,
Diffstat (limited to 'include')
-rw-r--r-- | include/m_ctype.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/m_ctype.h b/include/m_ctype.h index b1557e5293b..e344c434f81 100644 --- a/include/m_ctype.h +++ b/include/m_ctype.h @@ -123,8 +123,8 @@ typedef struct my_collation_handler_st int (*strcasecmp)(struct charset_info_st *, const char *, const char *); uint (*instr)(struct charset_info_st *, - const char *big, uint b_length, - const char *small, uint s_length, + const char *b, uint b_length, + const char *s, uint s_length, my_match_t *match, uint nmatch); /* Hash calculation */ @@ -257,8 +257,8 @@ extern void my_hash_sort_simple(CHARSET_INFO *cs, extern uint my_lengthsp_8bit(CHARSET_INFO *cs, const char *ptr, uint length); extern uint my_instr_simple(struct charset_info_st *, - const char *big, uint b_length, - const char *small, uint s_length, + const char *b, uint b_length, + const char *s, uint s_length, my_match_t *match, uint nmatch); @@ -326,8 +326,8 @@ int my_wildcmp_mb(CHARSET_INFO *, uint my_numchars_mb(CHARSET_INFO *, const char *b, const char *e); uint my_charpos_mb(CHARSET_INFO *, const char *b, const char *e, uint pos); uint my_instr_mb(struct charset_info_st *, - const char *big, uint b_length, - const char *small, uint s_length, + const char *b, uint b_length, + const char *s, uint s_length, my_match_t *match, uint nmatch); |