persistentstorage/sql/SQLite/printf.c
branchRCL_3
changeset 24 cc28652e0254
parent 23 26645d81f48d
equal deleted inserted replaced
23:26645d81f48d 24:cc28652e0254
   245   LONGDOUBLE_TYPE realvalue; /* Value for real types */
   245   LONGDOUBLE_TYPE realvalue; /* Value for real types */
   246   const et_info *infop;      /* Pointer to the appropriate info structure */
   246   const et_info *infop;      /* Pointer to the appropriate info structure */
   247   char buf[etBUFSIZE];       /* Conversion buffer */
   247   char buf[etBUFSIZE];       /* Conversion buffer */
   248   char prefix;               /* Prefix character.  "+" or "-" or " " or '\0'. */
   248   char prefix;               /* Prefix character.  "+" or "-" or " " or '\0'. */
   249   etByte errorflag = 0;      /* True if an error is encountered */
   249   etByte errorflag = 0;      /* True if an error is encountered */
   250   etByte xtype = 0;          /* Conversion paradigm */
   250   etByte xtype;              /* Conversion paradigm */
   251   char *zExtra;              /* Extra memory used for etTCLESCAPE conversions */
   251   char *zExtra;              /* Extra memory used for etTCLESCAPE conversions */
   252 #ifndef SQLITE_OMIT_FLOATING_POINT
   252 #ifndef SQLITE_OMIT_FLOATING_POINT
   253   int  exp, e2;              /* exponent of real numbers */
   253   int  exp, e2;              /* exponent of real numbers */
   254   double rounder;            /* Used for rounding floating point values */
   254   double rounder;            /* Used for rounding floating point values */
   255   etByte flag_dp;            /* True if decimal point should be shown */
   255   etByte flag_dp;            /* True if decimal point should be shown */