|
libft
|
#include "vec.h"Go to the source code of this file.
Functions | |
| int | vec_push (t_vec *dst, void *src) |
| Push element to the end of the vector. | |
| int vec_push | ( | t_vec * | dst, |
| void * | src | ||
| ) |
Push element to the end of the vector.
Takes in a vector and a pointer to an element to be pushed to the end of the vector.
| dst | t_vec* |
| src | void* |
Definition at line 17 of file vec_push.c.