Created
September 19, 2021 13:00
-
-
Save nithinkr1shna/b1872f076f63d7757dfd6c7d595e2bec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| while (!feof(pyc_pointer)) { | |
| fread(buffer, sizeof(char), 1, pyc_pointer); | |
| hex_str_p += sprintf(hex_str_p, "%02X", (unsigned char) buffer[0]); //converting binary to hex | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment