From 368fb3b02d0c532b566160cd0b4d3c4311b94057 Mon Sep 17 00:00:00 2001 From: BigBlase Date: Sun, 1 Oct 2023 22:46:50 -0400 Subject: [PATCH] oopsies forgot static dont mind this commit --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 3c75cc3..0e446fe 100644 --- a/src/main.c +++ b/src/main.c @@ -148,7 +148,7 @@ main(int argc, char *argv[]) return 0; } -char* +static char* e1(char *clearText, char key) { char *res = (char *)calloc(strlen(clearText) + 1, 1); @@ -161,7 +161,7 @@ e1(char *clearText, char key) return res; } -char* +static char* d1(char *cypher, char key) { char *res = (char *)calloc(strlen(cypher) + 1, 1);