-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv_size.c
18 lines (16 loc) · 974 Bytes
/
v_size.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* v_size.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: glegendr <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/12/12 22:17:13 by glegendr #+# #+# */
/* Updated: 2017/12/19 17:00:55 by glegendr ### ########.fr */
/* */
/* ************************************************************************** */
#include "vector.h"
int v_size(t_vec *vec)
{
return (vec->private_elem_nb);
}