OS1/movies/movies.h

27 lines
321 B
C

#ifndef MOVIES
#define MOVIES
#include "stdio.h"
#include "stdlib.h"
#include "csv_parser.h"
#include "node.h"
#include "input.h"
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,
};
#endif