server/src/orderfile.h

22 lines
322 B
C
Raw Normal View History

2017-10-07 18:03:22 +02:00
#ifndef H_ORDERFILE
#define H_ORDERFILE
#include <skill.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct input {
const char *(*getbuf)(void *data);
void *data;
} input;
int read_orders(struct input *in);
2017-10-07 19:44:23 +02:00
int readorders(const char *filename);
2017-10-07 18:03:22 +02:00
#ifdef __cplusplus
}
#endif
#endif