~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/my_decimal.h

  • Committer: Brian Aker
  • Date: 2008-10-06 05:57:49 UTC
  • Revision ID: brian@tangent.org-20081006055749-svg700gciuqi0zu1
Remove all of uchar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
}
205
205
 
206
206
 
207
 
int my_decimal2binary(uint mask, const my_decimal *d, uchar *bin, int prec,
 
207
int my_decimal2binary(uint mask, const my_decimal *d, unsigned char *bin, int prec,
208
208
                      int scale);
209
209
 
210
210
 
211
211
inline
212
 
int binary2my_decimal(uint mask, const uchar *bin, my_decimal *d, int prec,
 
212
int binary2my_decimal(uint mask, const unsigned char *bin, my_decimal *d, int prec,
213
213
                      int scale)
214
214
{
215
215
  return check_result(mask, bin2decimal(bin, (decimal_t*) d, prec, scale));