modfetch/mod.h

14 lines
213 B
C
Raw Normal View History

2024-02-10 00:33:33 +01:00
#ifndef _MODFETCH_MOD_H
#define _MODFETCH_MOD_H
2024-02-10 14:11:26 +01:00
#include "semver.h"
2024-02-09 12:05:06 +01:00
#include <stdint.h>
2024-02-10 14:11:26 +01:00
semver version(void);
2024-02-10 14:51:50 +01:00
const char *name(void);
2024-02-09 12:05:06 +01:00
void init(char **config);
2024-02-10 14:51:50 +01:00
const char *get(void);
2024-02-10 00:33:33 +01:00
#endif // _MODFETCH_MOD_H