blob: ea61dd083b48e37d87ebadc24ecb03daffbf5741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef DIRECTOR_H
# define DIRECTOR_H
# include "main.h"
# include "list.h"
typedef struct director_struct {
char *path;
list_t *list;
} director_t;
extern director_t *loadDirector(char *s);
extern void destroyDirector(director_t * p);
#endif
|