~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/decimal.h

  • Committer: Brian Aker
  • Date: 2009-10-12 06:15:02 UTC
  • mfrom: (1165.1.178 static-functions)
  • Revision ID: brian@gaz-20091012061502-cds4m0cya7ow8sj7
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
int decimal2bin(decimal_t *from, unsigned char *to, int precision, int scale);
47
47
int bin2decimal(const unsigned char *from, decimal_t *to, int precision, int scale);
48
48
 
49
 
int decimal_size(int precision, int scale);
50
49
int decimal_bin_size(int precision, int scale);
51
 
int decimal_result_size(decimal_t *from1, decimal_t *from2, char op,
52
 
                        int param);
53
50
 
54
51
int decimal_intg(decimal_t *from);
55
52
int decimal_add(decimal_t *from1, decimal_t *from2, decimal_t *to);