/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_opp.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/12 12:02:50 by jhalford #+# #+# */ /* Updated: 2016/08/15 10:30:14 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_OPP_H # define FT_OPP_H t_opp gl_opptab[] = { {"+", &ft_add}, {"-", &ft_sub}, {"*", &ft_mul}, {"/", &ft_div}, {"%", &ft_mod}, {"", &ft_usage} }; #endif