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
I had to look at the source to be sure that in -x offset data, the offset is written in decimal.
-x offset data
While at it, it would be nice if you could say -x 0x100 instead of -x 256, such as using %i with scanf().
-x 0x100
-x 256
%i
scanf()
The text was updated successfully, but these errors were encountered:
Hello, thank you for your suggestion.
it would be nice if you could say -x 0x100 instead of -x 256, such as using %i with scanf().
This is already supported. It is a feature of std::stoi when the base argument is 0. I agree I should document this somewhere.
Sorry, something went wrong.
BTW, -x -1 XX doesn't work in v.1.3.2. Still worked in v.1.3.1.
Nice catch, thank you. (I need to add automated testing.)
kimci86
No branches or pull requests
I had to look at the source to be sure that in
-x offset data
, the offset is written in decimal.While at it, it would be nice if you could say
-x 0x100
instead of-x 256
, such as using%i
withscanf()
.The text was updated successfully, but these errors were encountered: