~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/strto.c

  • Committer: Stewart Smith
  • Date: 2008-07-25 03:48:54 UTC
  • mfrom: (207.1.1 drizzle)
  • mto: (210.1.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 211.
  • Revision ID: stewart@flamingspork.com-20080725034854-p34pdb0lhpoc159d
merge mainline and update md5 and crc32 plugins to new interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
#undef strtoul
50
50
#undef strtol
51
51
#ifdef USE_LONGLONG
52
 
#define UTYPE_MAX (~(ulonglong) 0)
 
52
#define UTYPE_MAX (~(uint64_t) 0)
53
53
#define TYPE_MIN LONGLONG_MIN
54
54
#define TYPE_MAX LONGLONG_MAX
55
 
#define longtype longlong
56
 
#define ulongtype ulonglong
 
55
#define longtype int64_t
 
56
#define ulongtype uint64_t
57
57
#ifdef USE_UNSIGNED
58
58
#define function ulongtype strtoull
59
59
#else