|
|
|
#ifndef MACH_H
|
|
#define MACH_H
|
|
|
|
#include <librr/types.h>
|
|
|
|
typedef struct MachScript MachScript;
|
|
|
|
struct MachScript
|
|
{
|
|
usz_t num_compilation_units;
|
|
char **compilation_unit_paths;
|
|
};
|
|
|
|
i32_t mach_read_script(const char *path, MachScript *out_script);
|
|
|
|
#endif // MACH_H
|
|
|