~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/my_decimal.h

  • Committer: Brian Aker
  • Date: 2008-08-10 17:18:41 UTC
  • mfrom: (287.3.13 codestyle)
  • Revision ID: brian@tangent.org-20080810171841-pkvi2ky94wbd0nt5
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
 
279
279
 
280
280
inline
281
 
int str2my_decimal(uint mask, const char *str, my_decimal *d, char **end)
 
281
int str2my_decimal(uint mask, char *str, my_decimal *d, char **end)
282
282
{
283
283
  return check_result_and_overflow(mask, string2decimal(str,(decimal_t*)d,end),
284
284
                                   d);