persistentstorage/sql/SQLite/printf.c
changeset 17 55f2396f6d25
parent 15 3eacc0623088
child 25 63532cdadd44
equal deleted inserted replaced
15:3eacc0623088 17:55f2396f6d25
   261   LONGDOUBLE_TYPE realvalue; /* Value for real types */
   261   LONGDOUBLE_TYPE realvalue; /* Value for real types */
   262   const et_info *infop;      /* Pointer to the appropriate info structure */
   262   const et_info *infop;      /* Pointer to the appropriate info structure */
   263   char buf[etBUFSIZE];       /* Conversion buffer */
   263   char buf[etBUFSIZE];       /* Conversion buffer */
   264   char prefix;               /* Prefix character.  "+" or "-" or " " or '\0'. */
   264   char prefix;               /* Prefix character.  "+" or "-" or " " or '\0'. */
   265   etByte errorflag = 0;      /* True if an error is encountered */
   265   etByte errorflag = 0;      /* True if an error is encountered */
   266   etByte xtype;              /* Conversion paradigm */
   266   etByte xtype = 0;          /* Conversion paradigm */
   267   char *zExtra;              /* Extra memory used for etTCLESCAPE conversions */
   267   char *zExtra;              /* Extra memory used for etTCLESCAPE conversions */
   268 #ifndef SQLITE_OMIT_FLOATING_POINT
   268 #ifndef SQLITE_OMIT_FLOATING_POINT
   269   int  exp, e2;              /* exponent of real numbers */
   269   int  exp, e2;              /* exponent of real numbers */
   270   double rounder;            /* Used for rounding floating point values */
   270   double rounder;            /* Used for rounding floating point values */
   271   etByte flag_dp;            /* True if decimal point should be shown */
   271   etByte flag_dp;            /* True if decimal point should be shown */