From 17178535cc9df5e834dfd43e3b2b919e02e5798d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 26 Oct 2023 19:53:29 -0400 Subject: Initial commit --- include/relocation.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/relocation.h (limited to 'include/relocation.h') diff --git a/include/relocation.h b/include/relocation.h new file mode 100644 index 0000000..ecbb38b --- /dev/null +++ b/include/relocation.h @@ -0,0 +1,16 @@ +/** + * @file relocation.h + */ +#ifndef OHMYCAL_RELOCATION_H +#define OHMYCAL_RELOCATION_H + +#include +#include +#include +#include +#include + +void replace_text(char *original, const char *target, const char *replacement); +void file_replace_text(const char* filename, const char* target, const char* replacement); + +#endif //OHMYCAL_RELOCATION_H -- cgit