2023-10-12 14:25:48 -07:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef MOVIES
|
|
|
|
#define MOVIES
|
|
|
|
|
|
|
|
#include "stdio.h"
|
|
|
|
#include "stdlib.h"
|
|
|
|
|
|
|
|
#include "csv_parser.h"
|
|
|
|
#include "node.h"
|
2023-10-13 03:29:13 -07:00
|
|
|
#include "input.h"
|
2023-10-12 14:25:48 -07:00
|
|
|
|
2023-10-13 01:39:26 -07:00
|
|
|
int menu();
|
|
|
|
|
|
|
|
void movie_year(struct node*);
|
|
|
|
void movie_rate(struct node*);
|
|
|
|
void movie_lang(struct node*);
|
|
|
|
|
|
|
|
enum OPTIONS {
|
|
|
|
YEAR = 1,
|
|
|
|
RATE = 2,
|
|
|
|
LANGUAGE = 3,
|
|
|
|
EXIT = 4,
|
|
|
|
};
|
|
|
|
|
2023-10-12 14:25:48 -07:00
|
|
|
|
|
|
|
#endif
|