diff options
author | Simon Glass <sjg@chromium.org> | 2024-10-19 09:21:46 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-11-03 21:27:12 -0600 |
commit | 5bd4ead8bd76c85aa599c44e8bfb12f512d8ed09 (patch) | |
tree | 4fb1a792341f6a5b3c636bf79071c64f2a669d6a /include/alist.h | |
parent | d785a77d18acdf6714f4570c14e622caadf4d5e3 (diff) |
alist: Add a function to empty the list
Sometimes it is useful to empty the list without de-allocating any of
the memory used, e.g. when the list will be re-populated immediately
afterwards.
Add a new function for this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/alist.h')
-rw-r--r-- | include/alist.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/alist.h b/include/alist.h index 0090b9c0eb1..c639e42ab7d 100644 --- a/include/alist.h +++ b/include/alist.h @@ -275,6 +275,13 @@ bool alist_chk_ptr(const struct alist *lst, const void *ptr); _pos++) /** + * alist_empty() - Empty an alist + * + * This removes all entries from the list, without changing the allocated size + */ +void alist_empty(struct alist *lst); + +/** * alist_init() - Set up a new object list * * Sets up a list of objects, initially empty |