~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/decimal.h

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
typedef enum
20
20
{TRUNCATE=0, HALF_EVEN, HALF_UP, CEILING, FLOOR}
21
21
  decimal_round_mode;
22
 
typedef int32 decimal_digit_t;
 
22
typedef int32_t decimal_digit_t;
23
23
 
24
24
typedef struct st_decimal_t {
25
25
  int    intg, frac, len;