OS1/movies/movies.c

13 lines
129 B
C
Raw Normal View History

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