42-archive/42-piscine-c/d10/ex06/srcs/ft_div.c
2016-08-25 20:50:28 +02:00

18 lines
960 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_add.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/08 15:18:59 by jhalford #+# #+# */
/* Updated: 2016/08/13 16:27:05 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
int ft_div(int a, int b)
{
return (a / b);
}