summaryrefslogtreecommitdiff
path: root/strings/ctype-sjis.c
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2002-11-27 15:47:39 +0400
committerunknown <bar@bar.mysql.r18.ru>2002-11-27 15:47:39 +0400
commit4b021e6ea99ac80745875118ccbde5621588890b (patch)
tree050d9a5831da812f76ab2011fd946f534f746169 /strings/ctype-sjis.c
parentd71bdbef677f324e8167caa565af4c3216e1785f (diff)
downloadmariadb-git-4b021e6ea99ac80745875118ccbde5621588890b.tar.gz
Preparing to use better string-to-number functions to avoid c_ptr() call,
wich is slower and is not ucs2 compatible
Diffstat (limited to 'strings/ctype-sjis.c')
-rw-r--r--strings/ctype-sjis.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/strings/ctype-sjis.c b/strings/ctype-sjis.c
index 91a9fae55fa..1ccf0b1d8f2 100644
--- a/strings/ctype-sjis.c
+++ b/strings/ctype-sjis.c
@@ -4491,11 +4491,11 @@ CHARSET_INFO my_charset_sjis =
my_hash_sort_simple,
0,
my_snprintf_8bit,
- my_strtol_8bit,
- my_strtoul_8bit,
- my_strtoll_8bit,
- my_strtoull_8bit,
- my_strtod_8bit
+ my_strntol_8bit,
+ my_strntoul_8bit,
+ my_strntoll_8bit,
+ my_strntoull_8bit,
+ my_strntod_8bit
};
#endif