removed unused removeSpaces function
This commit is contained in:
parent
b794cab66f
commit
299001a8f7
@ -35,18 +35,6 @@ void deallocateLogger(logFile logger)
|
|||||||
free(logger.fileName);
|
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
|
char **decryptLogger(logFile logger) //TODO: Fix valgrind issues
|
||||||
{
|
{
|
||||||
FILE *file = fdopen(logger.file, "r");
|
FILE *file = fdopen(logger.file, "r");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user