~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/decimal.h

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
int decimal2string(decimal_t *from, char *to, int *to_len,
33
33
                   int fixed_precision, int fixed_decimals,
34
34
                   char filler);
35
 
int decimal2ulonglong(decimal_t *from, ulonglong *to);
36
 
int ulonglong2decimal(ulonglong from, decimal_t *to);
 
35
int decimal2uint64_t(decimal_t *from, uint64_t *to);
 
36
int uint64_t2decimal(uint64_t from, decimal_t *to);
37
37
int decimal2longlong(decimal_t *from, longlong *to);
38
38
int longlong2decimal(longlong from, decimal_t *to);
39
39
int decimal2double(decimal_t *from, double *to);