view tests/mini/bug55.d @ 1185:8baf611f0009

Fix nested references to 'ref' foreach variables. These "walk around" the array being iterated over, so they're a bit trickier than other variables to get right.
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 01 Apr 2009 00:01:44 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module bug55;
extern(C) int printf(char*, ...);

int atoi(char[] s) {
    int i, fac=1;
    bool neg = (s.length) && (s[0] == '-');
    char[] a = neg ? s[1..$] : s;
    foreach_reverse(c; a) {
        i += (c-'0') * fac;
        fac *= 10;
    }
    return !neg ? i : -i;
}

void main()
{
    printf("64213 = %d\n", atoi("64213"));
    printf("-64213 = %d\n", atoi("-64213"));
    assert(atoi("64213") == 64213);
    assert(atoi("-64213") == -64213);
}