~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to libc/stdlib/dtostre.c

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2008-04-04 17:05:32 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080404170532-tiwwl2e2qln7ri0w
Tags: 1:1.6.2-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2005, Dmitry Xmelkov
 
2
   All rights reserved.
 
3
 
 
4
   Redistribution and use in source and binary forms, with or without
 
5
   modification, are permitted provided that the following conditions are met:
 
6
 
 
7
   * Redistributions of source code must retain the above copyright
 
8
     notice, this list of conditions and the following disclaimer.
 
9
   * Redistributions in binary form must reproduce the above copyright
 
10
     notice, this list of conditions and the following disclaimer in
 
11
     the documentation and/or other materials provided with the
 
12
     distribution.
 
13
   * Neither the name of the copyright holders nor the names of
 
14
     contributors may be used to endorse or promote products derived
 
15
     from this software without specific prior written permission.
 
16
 
 
17
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
18
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
19
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
20
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
21
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
22
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
23
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
24
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
25
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
26
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
27
  POSSIBILITY OF SUCH DAMAGE. */
 
28
 
 
29
/* $Id: dtostre.c,v 1.2 2007/11/04 01:06:42 dmix Exp $ */
 
30
 
 
31
#include <stdlib.h>
 
32
#include <avr/pgmspace.h>
 
33
#include "ftoa_engine.h"
 
34
 
 
35
char *
 
36
dtostre (double val, char *sbeg, unsigned char prec, unsigned char flags)
 
37
{
 
38
    __attribute__((progmem)) static char str_nan[2][4] =
 
39
        {"nan", "NAN"};
 
40
    __attribute__((progmem)) static char str_inf[2][sizeof(str_nan[0])] =
 
41
        {"inf", "INF"};
 
42
    char *d;            /* dst  */
 
43
    char *s;            /* src  */
 
44
    signed char exp;
 
45
    unsigned char vtype;
 
46
 
 
47
    if (prec > 7) prec = 7;
 
48
    
 
49
    exp = __ftoa_engine (val, sbeg, prec, 0);
 
50
    d = s = sbeg;
 
51
    vtype = *s++;
 
52
 
 
53
    if ((vtype & FTOA_MINUS) && !(vtype & FTOA_NAN))    /* like 'Glibc' */
 
54
        *d++ = '-';
 
55
    else if (flags & DTOSTR_PLUS_SIGN)
 
56
        *d++ = '+';
 
57
    else if (flags & DTOSTR_ALWAYS_SIGN)
 
58
        *d++ = ' ';
 
59
 
 
60
    if (vtype & FTOA_NAN) {
 
61
        s = str_nan[0];
 
62
        goto copy;
 
63
    }
 
64
    
 
65
    if (vtype & FTOA_INF) {
 
66
        s = str_inf[0];
 
67
      copy:
 
68
        if (flags & DTOSTR_UPPERCASE)
 
69
            s += sizeof(str_nan[0]);
 
70
        strcpy_P (d, s);
 
71
        goto ret;
 
72
    }
 
73
    
 
74
    /* mantissa */
 
75
    if ( (*d++ = *s++) != '1')
 
76
        vtype &= ~FTOA_CARRY;           /* for possible exponent "-00"  */
 
77
    if (prec) {
 
78
        unsigned char c1, c2;
 
79
        c1 = '.';
 
80
        do {
 
81
            c2 = *s++;
 
82
            *d++ = c1;
 
83
            c1 = c2;
 
84
        } while (--prec);
 
85
        *d++ = c1;
 
86
    }
 
87
 
 
88
    /* exponent */
 
89
    *d++ = (flags & DTOSTR_UPPERCASE) ? 'E' : 'e';
 
90
    if (exp < 0) {
 
91
        *d++ = '-';
 
92
        exp = -exp;
 
93
    } else if (exp == 0 && (vtype & FTOA_CARRY) != 0) {
 
94
        *d++ = '-';
 
95
    } else {
 
96
        *d++ = '+';
 
97
    }
 
98
    for (prec = '0';  exp >= 10;  exp -= 10)
 
99
        prec += 1;
 
100
    *d++ = prec;
 
101
    *d++ = '0' + exp;
 
102
    *d = 0;
 
103
    
 
104
  ret:
 
105
    return sbeg;
 
106
}
 
107
                        /*** end of file ***/