diff --git a/src/logger/lib/utils.c b/src/logger/lib/utils.c index ef968ab..540b234 100644 --- a/src/logger/lib/utils.c +++ b/src/logger/lib/utils.c @@ -35,18 +35,6 @@ void deallocateLogger(logFile logger) free(logger.fileName); } -void removeSpaces(char* string) -{ - char* d = string; - do - { - while (*d == ' ') - { - ++d; - } - } while ((*string++ = *d++)); -} - char **decryptLogger(logFile logger) //TODO: Fix valgrind issues { FILE *file = fdopen(logger.file, "r");