aboutsummaryrefslogtreecommitdiff
path: root/extensions/ext.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-07-08 09:45:14 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-07-08 09:45:14 -0400
commit6adfb65f6646537abb0ad717614eec26ff14761c (patch)
tree1bbe40dd148313d3cd61ff22bd7b76852ad07102 /extensions/ext.h
downloadasdfapi-6adfb65f6646537abb0ad717614eec26ff14761c.tar.gz
Initial commit
Diffstat (limited to 'extensions/ext.h')
-rw-r--r--extensions/ext.h18
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