~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/m_string.h

  • Committer: Brian Aker
  • Date: 2008-10-07 15:13:28 UTC
  • mfrom: (481.1.19 codestyle)
  • Revision ID: brian@tangent.org-20081007151328-m49yev7qggqmzxg1
Mergining Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
extern char *str2int(const char *src,int radix,long lower,long upper,
147
147
                         long *val);
148
148
int64_t my_strtoll10(const char *nptr, char **endptr, int *error);
149
 
#if SIZEOF_LONG == SIZEOF_LONG_LONG
150
 
#define int64_t2str(A,B,C) int2str((A),(B),(C),1)
151
 
#define int64_t10_to_str(A,B,C) int10_to_str((A),(B),(C))
152
 
#else
153
149
extern char *int64_t2str(int64_t val,char *dst,int radix);
154
150
extern char *int64_t10_to_str(int64_t val,char *dst,int radix);
155
 
#endif
156
151
 
157
152
 
158
153
#if defined(__cplusplus)