URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [d.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
long long unsigned str2llu (str) char *str; { long long unsigned acc; long long b = 10; char d; acc = *str++ - '0'; for (;;) { d = *str++; if (d == '\0') break; d -= '0'; acc = acc * 10 + d; } return acc; }
Go to most recent revision | Compare with Previous | Blame | View Log