someshitprograminc/src/modifyUID.c

9 lines
174 B
C

#include <stdio.h>
#include "colors.h"
void modifyUID(FILE *file) {
fseek(file, 0, SEEK_SET);
unsigned char newByte = 0x67;
fwrite(&newByte, sizeof(newByte), 1, file);
}