#include "../includes/woody.h" void encrypt(char *file, unsigned long int offset, unsigned long int size) { size_t i = 0; while (i < size) { file[offset + i] = 0; ++i; } }