add read file functionality

This commit is contained in:
2018-12-08 15:40:36 -03:00
parent bb8625a129
commit a917b68766
9 changed files with 451 additions and 107 deletions

View File

@@ -3,7 +3,7 @@ CFLAGS=-Wall -I../src/include -DDEBUG -g
SRC=test.c
OBJ=$(SRC:.c=.o)
OBJ+=../src/random.o
OBJ+=../src/random.o ../src/read_file.o
all: test

View File

@@ -22,7 +22,7 @@
* El programa de test
*/
int main(int argc, char **argv) {
int pass;
//int pass;
int passed = 0;
int failed = 0;