c
c copied to clipboard
Small mistake in code
In the following piece of code I think you meant to write if(c >= 'A' && c <= 'F').
hexnumberc(int c)
{
if(numberc(c))
return 1;
if(c >= 'a' && c = 'F' && c
Good spotting, up until now I have been reviewing myself.
If you want credit you can make a pull request for this. No need to make a test case, I will add one.
This is fixed, though I won't close until I add some more tests. Thanks again.