19 lines
985 B
C
19 lines
985 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* mach_o_parse.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/03/25 20:56:50 by jhalford #+# #+# */
|
|
/* Updated: 2017/03/25 22:09:56 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "ft_nm_otool.h"
|
|
|
|
int mach_o_parse(t_machodata *data)
|
|
{
|
|
(void)data;
|
|
return (0);
|
|
}
|