aboutsummaryrefslogtreecommitdiff
path: root/extensions/ext.h
blob: 8a52b9074d7e442de2ee4c8b1e5b3e78ad474838 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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