42-archive/42-piscine-c/d10/ex09/includes/ft_opp.h
2016-08-25 20:50:28 +02:00

25 lines
1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_opp.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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