~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/decimal.h

  • Committer: Stewart Smith
  • Date: 2009-10-08 12:54:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1179.
  • Revision ID: stewart@flamingspork.com-20091008125437-gj8kxjxlaiazubli
removeĀ unusedĀ decimal_size()

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
50
 
52
51
int decimal_intg(decimal_t *from);