gwion-util
utilities for the Gwion project
|
#include "gwion_util.h"
Go to the source code of this file.
Functions | |
ANN void | vector_init (const Vector v) |
Vector | new_vector (MemPool p) |
ANN void | vector_release (const Vector v) |
ANN void | free_vector (MemPool p, const Vector v) |
ANN void | vector_add (const Vector v, const vtype data) |
ANN void | vector_copy2 (const restrict Vector v, const restrict Vector ret) |
ANN Vector | vector_copy (MemPool p, const Vector v) |
ANN m_int | vector_find (const Vector v, const vtype data) |
ANN void | vector_rem (const Vector v, const vtype index) |
ANN bool | vector_rem2 (const Vector v, const vtype data) |
ANN vtype | vector_pop (const Vector v) |
ANN void | vector_clear (const Vector v) |
Definition at line 32 of file vector.c.