From 7bc2fb906b41960eba4391d7dbf7526ea02d5afd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Wed, 19 Apr 2017 09:33:30 +0200 Subject: array: implement array_truncate --- array.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'array.h') diff --git a/array.h b/array.h index 21036a9..b369d68 100644 --- a/array.h +++ b/array.h @@ -56,5 +56,7 @@ bool array_remove(Array*, size_t idx); size_t array_length(Array*); /* return the number of elements which can be stored without enlarging the array */ size_t array_capacity(Array*); +/* remove all elements at index >= length, keep allocated memory */ +bool array_truncate(Array*, size_t length); #endif -- cgit v1.2.3