Skip to content

Commit 71dae16

Browse files
hozlucas28Ferny1011GuidolinaresTiagoGiannotti
committed
fix: remove unnecessary code
Co-authored-by: Ferney Santiago Quiroga <Ferny1011@users.noreply.github.com> Co-authored-by: Guidolinares <gulinares@alumno.unlam.com> Co-authored-by: Tiago Giannotti <tiago.giannotti.02@gmail.com>
1 parent ebfdd66 commit 71dae16

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/validators.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11

22
#include "./validators.h"
33

4-
#include <stdio.h>
54
#include <strings.h>
65

76
#include "./macros.h"
@@ -32,9 +31,5 @@ int validateCols(int cols) {
3231
int validateInitialStateFile(char* filePath) {
3332
char* extensions[] = {"csv", "txt"};
3433
char* extension = strrchr(filePath, '.');
35-
36-
printf("> filePath: \"%s\"\n\n", filePath);
37-
printf("> extension: \"%s\"\n\n", extension);
38-
3934
return extension == NULL ? 0 : isStrIn(extension + 1, extensions, 2);
4035
}

0 commit comments

Comments
 (0)