~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/dtoa.c

  • Committer: Brian Aker
  • Date: 2008-08-09 02:54:47 UTC
  • Revision ID: brian@tangent.org-20080809025447-cgs749f4eqfg2kjq
Cleaned out my_bool from strings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
212
212
  int decpt, sign, len, exp_len;
213
213
  char *res, *src, *end, *dst= to, *dend= dst + width;
214
214
  char buf[DTOA_BUFF_SIZE];
215
 
  my_bool have_space, force_e_format;
 
215
  bool have_space, force_e_format;
216
216
  assert(width > 0 && to != NULL);
217
217
  
218
218
  /* We want to remove '-' from equations early */