OS1/movies/movies.h

30 lines
379 B
C
Raw Normal View History

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