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
Los bits de los bytes se deben numerar para el otro lado:
cambiar
Por
The text was updated successfully, but these errors were encountered:
Fix issue #8
e0cb554
RELEASE 1.0.2
8f8add0
Fixed issue #8
No branches or pull requests
Los bits de los bytes se deben numerar para el otro lado:
cambiar
define BIT_IN_CHAR(bit) (0x01 << (CHAR_BIT - 1 - ((bit) % CHAR_BIT)))
Por
define BIT_IN_CHAR(bit) (0x80 >> (CHAR_BIT - 1 - ((bit) % CHAR_BIT)))
The text was updated successfully, but these errors were encountered: