diff options
Diffstat (limited to 'array.h')
| -rw-r--r-- | array.h | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -101,26 +101,5 @@ VIS_INTERNAL bool array_resize(Array*, size_t length); * Sort array, the comparision function works as for `qsort(3)`. */ VIS_INTERNAL void array_sort(Array*, int (*compar)(const void*, const void*)); -/** - * Push item onto the top of the stack. - * @rst - * .. note:: Is equivalent to ``array_add(arr, item)``. - * @endrst - */ -VIS_INTERNAL bool array_push(Array*, void *item); -/** - * Get and remove item at the top of the stack. - * @rst - * .. warning:: The same ownership rules as for ``array_get`` apply. - * @endrst - */ -VIS_INTERNAL void *array_pop(Array*); -/** - * Get item at the top of the stack without removing it. - * @rst - * .. warning:: The same ownership rules as for ``array_get`` apply. - * @endrst - */ -VIS_INTERNAL void *array_peek(const Array*); #endif |
