-
Notifications
You must be signed in to change notification settings - Fork 0
/
input_list.h
23 lines (20 loc) · 1.13 KB
/
input_list.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* :::::::: */
/* input_list.h :+: :+: */
/* +:+ */
/* By: jandre-d <[email protected]> +#+ */
/* +#+ */
/* Created: 2019/02/25 17:01:34 by jandre-d #+# #+# */
/* Updated: 2019/03/21 11:50:30 by jandre-d ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef INPUT_LIST_H
# define INPUT_LIST_H
# include "fdf.h"
void free_split(char **split);
void input_list_add_point_to_line(t_input_list_point *add,
t_input_list_line *line);
void input_list_add_line_to_list(t_input_list_line *add,
t_input_list_lines *to);
#endif