This file contains 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
void HexDump(const char *buf, int len, int addr) { | |
int i, j, k, n; | |
char binstr[80]; | |
n = 0; | |
for (i = 0; i < len; i++) { | |
if (0 == (i % 16)) { | |
n += sprintf(binstr+n, "%08x -", i + addr); | |
} | |
n += sprintf(binstr+n, " %02x", (unsigned char)buf[i]); |
This file contains 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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\msys2_shell] | |
@="Open MSYS2 here" | |
"Icon"="\"D:\\msys64\\msys2.ico\"" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\msys2_shell\command] | |
@="D:\\msys64\\msys2_shell.cmd -mingw -here" | |
[HKEY_CLASSES_ROOT\Folder\shell\msys2_shell] |