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