30 lines
390 B
C
30 lines
390 B
C
|
|
|
|
#ifndef MOVIES_YEAR
|
|
#define MOVIES_YEAR
|
|
|
|
#include "stdio.h"
|
|
#include "stdlib.h"
|
|
#include "time.h"
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "csv_parser.h"
|
|
#include "node.h"
|
|
#include "input.h"
|
|
|
|
int menu();
|
|
|
|
void print_csv(struct node*, char*);
|
|
|
|
// Menu Options
|
|
enum OPTIONS {
|
|
YEAR = 1,
|
|
RATE = 2,
|
|
LANGUAGE = 3,
|
|
EXIT = 4,
|
|
};
|
|
|
|
void find_year(struct csv*, void*);
|
|
|
|
#endif
|