modfetch/mod.h

16 lines
266 B
C
Raw Normal View History

2024-02-10 00:33:33 +01:00
#ifndef _MODFETCH_MOD_H
#define _MODFETCH_MOD_H
2024-02-09 12:05:06 +01:00
#include <stdint.h>
uint8_t version_major(void);
uint8_t version_minor(void);
uint8_t version_patch(void);
const char *module_name(void);
const char *get(void);
void init(char **config);
2024-02-10 00:33:33 +01:00
#endif // _MODFETCH_MOD_H