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
Back to the thread
Back to the list