We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the following piece of code I think you meant to write if(c >= 'A' && c <= 'F').
if(c >= 'A' && c <= 'F')
hexnumberc(int c) { if(numberc(c)) return 1; if(c >= 'a' && c <= 'f') return 1; if(c >= 'F' && c <= 'F') return 1; return 0; }
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
This is fixed, though I won't close until I add some more tests. Thanks again.
No branches or pull requests
In the following piece of code I think you meant to write
if(c >= 'A' && c <= 'F')
.The text was updated successfully, but these errors were encountered: