OpenCores
URL https://opencores.org/ocsvn/plasma/plasma/trunk

Subversion Repositories plasma

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /plasma/trunk
    from Rev 431 to Rev 432
    Reverse comparison

Rev 431 → Rev 432

/kernel/libc.c
216,9 → 216,9
ch = *s++;
if('0' <= ch && ch <= '9')
ch -= '0';
else if('A' <= ch && ch <= 'Z')
else if('A' <= ch && ch < base - 10 + 'A')
ch = ch - 'A' + 10;
else if('a' <= ch && ch <= 'z')
else if('a' <= ch && ch < base - 10 + 'a')
ch = ch - 'a' + 10;
else
break;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.