OS1/directories/movies.h

30 lines
379 B
C
Raw Normal View History

2023-10-30 03:25:48 -07:00
#ifndef MOVIES
#define MOVIES
#include "stdio.h"
#include "stdlib.h"
#include "csv_parser.h"
#include "node.h"
#include "input.h"
int menu();
// Headers for the options called by menu
void movie_year(struct node*);
void movie_rate(struct node*);
void movie_lang(struct node*);
// Menu Options
enum OPTIONS {
YEAR = 1,
RATE = 2,
LANGUAGE = 3,
EXIT = 4,
};
#endif