/* Description: This program is really for a review of C. This program will read and parse lines from a file. Each line represents a movie tile, year. We need to store each movie into an appropriate data structure so that we can potentially search it, reorder it, and print it. History: 1/14/26 - defined the problem that we're solving. defined the struct movie in the header file. */ #include "MovieManager.h" int main(void) { return 0; }