diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:17:47 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:17:47 +0000 |
| commit | 62b10f1e2c716dcc2b1a7d1a2d7c4ed6042edbf5 (patch) | |
| tree | 6024b721fc6179a7d44e37f7c6b73380cedb10df /include/impl/base.h | |
Diffstat (limited to 'include/impl/base.h')
| -rw-r--r-- | include/impl/base.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/impl/base.h b/include/impl/base.h new file mode 100644 index 0000000..1cc3986 --- /dev/null +++ b/include/impl/base.h @@ -0,0 +1,14 @@ +#ifndef IMPL_BASE_H +#define IMPL_BASE_H + +/** + * Initialize impl + */ +void impl_init(void); + +/** + * Cleanup impl resources + */ +void impl_cleanup(void); + +#endif /* IMPL_BASE_H */ |