summaryrefslogtreecommitdiff
path: root/src/til_setup.h
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2022-04-24 17:46:18 -0700
committerVito Caputo <vcaputo@pengaru.com>2022-04-24 17:46:18 -0700
commit1435249cd1cac95d31403a9592018eaad9c7cb00 (patch)
tree82c72ee95d706aa138574ae28bfcc7b240af4a61 /src/til_setup.h
parent23f54e51f5bb62ffa98383df996441c5852b5d2d (diff)
til_setup: add til_setup_new() helper
For use when setup functions allocate their private setup to return in *res_setup. They specify the size of their private setup, and supply the free function to use. This may be libc's free() when it's a simple setup struct, or a bespoke free function when deep/complex freeing is required for cleanup. It's expected that callers will be embedding til_setup_t at the start of their private setup struct, and returning a pointer to this in *res_setup which would be the same value as a pointer to to their private setup struct.
Diffstat (limited to 'src/til_setup.h')
-rw-r--r--src/til_setup.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/til_setup.h b/src/til_setup.h
index 7984dd1..7f61213 100644
--- a/src/til_setup.h
+++ b/src/til_setup.h
@@ -7,4 +7,6 @@ struct til_setup_t {
void (*free)(til_setup_t *setup);
};
+void * til_setup_new(size_t size, void (*free_func)(til_setup_t *setup));
+
#endif
© All Rights Reserved