-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibplist.h
29 lines (23 loc) · 1.13 KB
/
libplist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libplist.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adzikovs <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/04/04 09:14:53 by adzikovs #+# #+# */
/* Updated: 2017/04/10 12:40:38 by adzikovs ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBPLIST_H
# define LIBPLIST_H
typedef struct s_place
{
char *path;
char *name;
struct s_place *next;
} t_place;
t_place *ft_new_place(char *name);
void ft_plist_pal(t_place **begin, char *name);
void ft_plist_clear(t_place **begin);
#endif