j
k
j a
j l
On Fri, 11 Apr 2008, svn@coreboot.org wrote:
+int isxdigit(int c) +{ return isdigit(c) || (tolower(c) >= 'a' && tolower(c) <= 'z'); +}
+int isxdigit(int c) +{
+}
Shouldn't this be
return isdigit(c) || (tolower(c) >= 'a' && tolower(c) <= 'f');
/ulf
Show replies by date
coreboot@coreboot.org
Add to favorites Remove from favorites