~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/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:
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,