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.c | |
download | asdfapi-6adfb65f6646537abb0ad717614eec26ff14761c.tar.gz |
Initial commit
Diffstat (limited to 'extensions/ext.c')
-rw-r--r-- | extensions/ext.c | 10 |
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; +} |