ft_nm/inc/ft_nm.h

27 lines
1.2 KiB
C
Raw Normal View History

2019-05-10 18:29:21 +03:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_nm.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gtertysh <gtertysh@student.unit.ua> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/05/06 22:37:16 by foton #+# #+# */
/* Updated: 2019/05/06 22:40:14 by gtertysh ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_NM_H
# define FT_NM_H
2019-07-13 19:35:42 +03:00
# include <mach-o/loader.h>
# include <mach-o/nlist.h>
typedef struct load_command t_load_command;
typedef struct mach_header_64 t_mach_header_64;
typedef struct symtab_command t_symtab_command;
typedef struct segment_command_64 t_segment_command_64;
typedef struct nlist_64 t_nlist_64;
typedef struct section_64 t_section_64;
2019-05-10 18:29:21 +03:00
#endif