diff options
Diffstat (limited to 'extensions/ext.h')
-rw-r--r-- | extensions/ext.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/extensions/ext.h b/extensions/ext.h new file mode 100644 index 0000000..8a52b90 --- /dev/null +++ b/extensions/ext.h @@ -0,0 +1,18 @@ +// +// Created by jhunk on 7/2/24. +// + +#ifndef ASDFAPI_EXT_H +#define ASDFAPI_EXT_H + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +struct ASDFExtension { + const char *name; // Name of extension + const char *desc; // Description of extension +}; + +int asdfapi_ext_new(struct ASDFExtension *ext, const char *name, const char *desc); +#endif //ASDFAPI_EXT_H |