~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/decimal.h

  • Committer: Monty Taylor
  • Date: 2008-08-10 06:28:58 UTC
  • mto: (312.1.3 translations)
  • mto: This revision was merged to the branch mainline in revision 295.
  • Revision ID: monty@inaugust.com-20080810062858-d4oevczsgdf47pts
Const correctness change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
  decimal_digit_t *buf;
28
28
} decimal_t;
29
29
 
30
 
int internal_str2dec(const char *from, decimal_t *to, char **end,
 
30
int internal_str2dec(char *from, decimal_t *to, char **end,
31
31
                     bool fixed);
32
32
int decimal2string(decimal_t *from, char *to, int *to_len,
33
33
                   int fixed_precision, int fixed_decimals,