12 lines
129 B
C
12 lines
129 B
C
#include "movies.h"
|
|
|
|
int main() {
|
|
|
|
struct node* head = parse_csv();
|
|
|
|
printf("Test\n");
|
|
|
|
print_movies(head);
|
|
|
|
return 0;
|
|
}
|