From d25ffbedb80fc4e02945c518dcae91d3a5ef6db6 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Apr 2026 19:54:35 -0400 Subject: Expose tests_free() --- src/lib/delivery/include/delivery.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/delivery/include/delivery.h b/src/lib/delivery/include/delivery.h index b5799ac..68f4b14 100644 --- a/src/lib/delivery/include/delivery.h +++ b/src/lib/delivery/include/delivery.h @@ -521,6 +521,12 @@ int tests_add(struct Tests *tests, struct Test *x); */ void test_free(struct Test **x); +/** + * Free a `Tests` structure + * @param x pointer to `Tests` + */ +void tests_free(struct Tests **x); + /** * Initialize a `Test` structure * @return an initialized `Test` structure -- cgit