[coreboot] r3236 - in trunk/payloads/libpayload: include libc

Ulf Jordan jordan at chalmers.se
Fri Apr 11 23:18:49 CEST 2008


On Fri, 11 Apr 2008, svn at coreboot.org wrote:

> +int isxdigit(int c)
> +{
> +	return isdigit(c) || (tolower(c) >= 'a' && tolower(c) <= 'z');
> +}

Shouldn't this be

return isdigit(c) || (tolower(c) >= 'a' && tolower(c) <= 'f');


/ulf




More information about the coreboot mailing list