diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-08 09:45:14 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-08 09:45:14 -0400 |
commit | 6adfb65f6646537abb0ad717614eec26ff14761c (patch) | |
tree | 1bbe40dd148313d3cd61ff22bd7b76852ad07102 /extensions/ext.h | |
download | asdfapi-6adfb65f6646537abb0ad717614eec26ff14761c.tar.gz |
Initial commit
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 |