roza/lib/loader.h

16 lines
241 B
C

#ifndef RZ_LOADER_H
#define RZ_LOADER_H
#include "commons.h"
typedef struct {
} loader_t;
void loader_init(loader_t* loader);
void loader_free(loader_t* loader);
int loader_ldfile(loader_t* loader, char const* path, int debug);
#endif