~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/m_string.h

  • Committer: Toru Maesaka
  • Date: 2009-04-28 05:56:07 UTC
  • mto: (997.2.21 mordred)
  • mto: This revision was merged to the branch mainline in revision 1003.
  • Revision ID: dev@torum.net-20090428055607-eny6jp1w9rjrfjwi
Removed str2int() from the original string library by MySQL. Use strtol(3) instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
 
128
128
extern char *int2str(int32_t val, char *dst, int radix, int upcase);
129
129
extern char *int10_to_str(int32_t val,char *dst,int radix);
130
 
extern char *str2int(const char *src,int radix,long lower,long upper,
131
 
                     long *val);
132
130
int64_t my_strtoll10(const char *nptr, char **endptr, int *error);
133
131
extern char *int64_t2str(int64_t val,char *dst,int radix);
134
132
extern char *int64_t10_to_str(int64_t val,char *dst,int radix);