This commit is contained in:
Red
2019-08-24 22:26:05 -04:00
commit 4b46247686
2839 changed files with 624984 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdio.h>
int main(int argc, char **argv)
{
FILE *f = fopen(argv[1], "r+");
fseek(f, 0x24, SEEK_SET);
char byte = 0x10;
fwrite(&byte, sizeof(char), 1, f);
fclose(f);
}