diff options
author | Shav Kinderlehrer <[email protected]> | 2023-05-18 08:51:12 -0400 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2023-05-18 08:51:12 -0400 |
commit | fa8e81e288803207bc4f4501e0e4b1a4a96e9a5f (patch) | |
tree | 20b96fdbe7f3ee5da162b4735cf784fefc3eb76b /include/extension.h | |
parent | ef68f9c37818bd685cf363f67f5c08feb5e21ab0 (diff) | |
download | lat-fa8e81e288803207bc4f4501e0e4b1a4a96e9a5f.tar.gz lat-fa8e81e288803207bc4f4501e0e4b1a4a96e9a5f.zip |
Prep for new extension system
Diffstat (limited to 'include/extension.h')
-rw-r--r-- | include/extension.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/extension.h b/include/extension.h new file mode 100644 index 0000000..dc7b09f --- /dev/null +++ b/include/extension.h @@ -0,0 +1,8 @@ +#ifndef EXTENSION_H +#define EXTENSION_H + +#include "types.h" + +struct filedata runfilter(struct filedata *f); + +#endif // EXTENSION_H |