-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv_push_int.c
More file actions
18 lines (16 loc) · 977 Bytes
/
v_push_int.c
File metadata and controls
18 lines (16 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* v_push_int.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: glegendr <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/02/13 19:40:07 by glegendr #+# #+# */
/* Updated: 2018/02/13 19:41:17 by glegendr ### ########.fr */
/* */
/* ************************************************************************** */
#include "vector.h"
void v_push_int(t_vec *vec, int elem)
{
v_push(vec, &elem);
}