File:  [gforth] / gforth / engine / ecvt.c
Revision 1.3: download - view: text, annotated - select for diffs
Tue Dec 8 22:03:02 1998 UTC (25 years, 4 months ago) by anton
Branches: MAIN
CVS tags: v0-4-0, HEAD
updated dates in copyright messages
inserted copyright messages in most files that did not have them
removed outdated files engine/32bit.h engine/strsig.c

    1: /* cheap ecvt replacement
    2: 
    3:   Copyright (C) 1998 Free Software Foundation, Inc.
    4: 
    5:   This file is part of Gforth.
    6: 
    7:   Gforth is free software; you can redistribute it and/or
    8:   modify it under the terms of the GNU General Public License
    9:   as published by the Free Software Foundation; either version 2
   10:   of the License, or (at your option) any later version.
   11: 
   12:   This program is distributed in the hope that it will be useful,
   13:   but WITHOUT ANY WARRANTY; without even the implied warranty of
   14:   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   15:   GNU General Public License for more details.
   16: 
   17:   You should have received a copy of the GNU General Public License
   18:   along with this program; if not, write to the Free Software
   19:   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   20: */
   21: 
   22: #include <stdio.h>
   23: #include "config.h"
   24: #include <math.h>
   25: extern double floor(double);
   26: extern double pow10(double);
   27: 
   28: #define MAXCONV 0x40
   29: char scratch[MAXCONV];
   30: 
   31: char* ecvt(double x, int len, int* exp, int* sign)
   32: {
   33:    int i, j;
   34:    double z;
   35:    fprintf(stderr, "using own ecvt\n");
   36:    
   37:    if(len > (MAXCONV-1)) len = MAXCONV-1;
   38:    
   39:    if(x<0)
   40:      {
   41: 	*sign = 1;
   42: 	x = -x;
   43:      }
   44:    else
   45:      {
   46: 	*sign = 0;
   47:      }
   48: 
   49:    if(x==0)
   50: 	*exp=-1;
   51:    else
   52:      *exp=(int)floor(log10(x));
   53:    x = x / pow10((double)*exp);
   54:    
   55:    *exp += 1;
   56:    
   57:    for(i=0; i < len; i++)
   58:      {
   59: 	z=floor(x);
   60: 	scratch[i]='0'+(char)((int)z);
   61: 	x = (x-z)*10;
   62:      }
   63:    
   64:    if((x >= 5) && i)
   65:      {
   66: 	for(j=i-1; j>=0; j--)
   67: 	  {
   68: 	     if(scratch[j]!='9')
   69: 	       {
   70: 		  scratch[j]+=1; break;
   71: 	       }
   72: 	     else
   73: 	       {
   74: 		  scratch[j]='0';
   75: 	       }
   76: 	  }
   77: 	if(j<0)
   78: 	  {
   79: 	     scratch[0]='1';
   80: 	     *exp += 1;
   81: 	  }
   82:      }
   83:    
   84:    scratch[i]='\0';
   85:    
   86:    return scratch;
   87: }
   88: 
   89: #ifdef TEST
   90: int main(int argc, char ** argv)
   91: {
   92:    int a, b;
   93:    char * conv=ecvt(9e0,20,&a,&b);
   94:    
   95:    printf("ecvt Test: %f -> %s, %d, %d\n",9e0,conv,a,b);
   96: }
   97: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>