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