Defines utility functions for file operations in evo-crypter. More...
#include <setjmp.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Go to the source code of this file.
Functions | |
void | reverse_generations (char *generations) |
Reverses the order of characters in a string. | |
bool | file_exists (const char *filename) |
Checks if a file exists. | |
Defines utility functions for file operations in evo-crypter.
bool file_exists | ( | const char * | filename | ) |
Checks if a file exists.
filename | The path to the file to check. |
true
if the file exists, false
otherwise. void reverse_generations | ( | char * | generations | ) |
Reverses the order of characters in a string.
This function is used to reverse the generation sequence during decryption.
generations | The string to reverse (modified in place). |