1bb9dafe39
FossilOrigin-Name: f1def5fc963f9b5be6fdc11b12615815662405568b3ff991317983ad1a747523
18 lines
336 B
C
18 lines
336 B
C
/*
|
|
* Licensed under BSD 2-Clause License
|
|
*/
|
|
|
|
#ifndef MASTODONT_INSTANCE_H
|
|
#define MASTODONT_INSTANCE_H
|
|
#include "mastodont_types.h"
|
|
|
|
struct mstdnt_instance
|
|
{
|
|
int a;
|
|
};
|
|
|
|
// TODO
|
|
int mstdnt_instance(mastodont_t* api, struct mstdnt_args* args,
|
|
struct mstdnt_instance* inst);
|
|
|
|
#endif /* MASTODONT_INSTANCE_H */
|