diff options
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 */ |