2023-12-09 17:24:41 +00:00
|
|
|
#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);
|
|
|
|
|
2023-12-11 20:12:02 +00:00
|
|
|
int loader_ldfile(loader_t* loader, char const* path, int debug);
|
2023-12-09 17:24:41 +00:00
|
|
|
|
|
|
|
#endif
|