.. | ||
csv_parser.c | ||
csv_parser.h | ||
input.c | ||
input.h | ||
makefile | ||
movies.c | ||
movies.h | ||
movies_sample_1.csv | ||
node.c | ||
node.h | ||
readme.md |
Movies
This is a program which reads a CSV file with data about movies. Please take care that the format is correct as the program does not parse arbitrary length CSV files.
Compiling
You can compile this program by using the make command or by hand.
Simply type:
make
or, to manually compile, type:
gcc -std=c99 -g *.c -o movies
Running
To run, type:
make run
To specify a CSV file, you can type:
./movies $(CSV_File_to_read.csv)