|
Libft
Custom implementation of core libc functions with additional utility helpers.
|

Functions | |
| static bool | grow_and_insert (t_vector *vector, size_t index, const void *item) |
| bool | vector_push (t_vector *vector, const void *item) |
| Appends one item at the end of the vector. | |
| bool | vector_pop (t_vector *vector, void *dst) |
| Removes the last item from the vector. | |
| bool | vector_insert (t_vector *vector, size_t index, const void *item) |
| Inserts one item at a specific index. | |
| bool | vector_remove (t_vector *vector, size_t index, void *dst) |
| Removes one item at a specific index. | |
|
static |

