aboutsummaryrefslogtreecommitdiff
path: root/extensions/ext.c
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.c
downloadasdfapi-6adfb65f6646537abb0ad717614eec26ff14761c.tar.gz
Initial commit
Diffstat (limited to 'extensions/ext.c')
-rw-r--r--extensions/ext.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/extensions/ext.c b/extensions/ext.c
new file mode 100644
index 0000000..c46c9f9
--- /dev/null
+++ b/extensions/ext.c
@@ -0,0 +1,10 @@
+//
+// Created by jhunk on 7/2/24.
+//
+#include "ext.h"
+
+int asdfapi_ext_new(struct ASDFExtension *ext, const char *name, const char *desc) {
+ ext->name = name;
+ ext->desc = desc;
+ return 0;
+}