-
Notifications
You must be signed in to change notification settings - Fork 0
/
parsing.h
22 lines (18 loc) · 1.03 KB
/
parsing.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* split_command.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ggane <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/21 08:33:10 by ggane #+# #+# */
/* Updated: 2017/03/21 08:33:11 by ggane ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef parsing_h
#define parsing_h
#include <stdio.h>
#include <stdlib.h>
#include "libft.h"
char *split_command(char *line, char **delim);
#endif /* parsing_h */