-
Notifications
You must be signed in to change notification settings - Fork 0
/
parg_str.c
21 lines (18 loc) · 988 Bytes
/
parg_str.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* parg_str.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: qle-guen <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/10/19 14:12:08 by qle-guen #+# #+# */
/* Updated: 2016/10/19 14:13:04 by qle-guen ### ########.fr */
/* */
/* ************************************************************************** */
#include "libparse.h"
t_parg parg_str(char *s)
{
t_parg ret;
ret.s = s;
return (ret);
}