diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-04-08 19:54:35 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-04-08 19:54:35 -0400 |
| commit | d25ffbedb80fc4e02945c518dcae91d3a5ef6db6 (patch) | |
| tree | 66523e05538eae077737f3f75cee8c4f4cff6eed | |
| parent | fd2e8d9d2bc3dcce3707823c0ec0643f066c0b3f (diff) | |
| download | stasis-d25ffbedb80fc4e02945c518dcae91d3a5ef6db6.tar.gz | |
Expose tests_free()
| -rw-r--r-- | src/lib/delivery/include/delivery.h | 6 |
1 files changed, 6 insertions, 0 deletions
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 @@ -522,6 +522,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 */ |
