blob: c46c9f974a840a6f47c45df62fedc594c6215485 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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;
}
|