c0ddc1bf5e
FossilOrigin-Name: 4e8cdf2538b5a6eaf91c61e3b0ae57621d0934f376351c5d3b7b320927eb27d8
18 lines
336 B
C
18 lines
336 B
C
/*
|
|
* Licensed under BSD 3-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 */
|