mirror of
https://github.com/BreizhHardware/projetCGroupe8.git
synced 2026-03-18 21:30:32 +01:00
18 lines
293 B
C
18 lines
293 B
C
#ifndef UNTITLED_MOVIE_H
|
|
#define UNTITLED_MOVIE_H
|
|
|
|
struct Movie{
|
|
char* director;
|
|
char* name;
|
|
char* time;
|
|
char* category;
|
|
};
|
|
|
|
struct Movie* createMovie(char* director, char* name, char* time, char* category);
|
|
|
|
void deleteMovie(struct Movie* movie);
|
|
|
|
|
|
|
|
#endif //UNTITLED_MOVIE_H
|