Files
ivy/asm/reader.h

19 lines
335 B
C

#ifndef _ASM_READER_H_
#define _ASM_READER_H_
#include <ivy/asm/reader.h>
#include <stdio.h>
struct ivy_asm_reader {
FILE *r_fp;
struct ivy_asm_object_info r_info;
struct ivy_asm_section_info *r_sections;
};
struct ivy_asm_section_reader {
struct ivy_asm_reader *r_parent;
const struct ivy_asm_section_info *r_info;
};
#endif