/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* operators.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/17 07:38:59 by cacharle #+# #+# */ /* Updated: 2019/07/18 10:38:57 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ int add(int x, int y) { return (x + y); } int subtract(int x, int y) { return (x - y); } int multiply(int x, int y) { return (x * y); } int divide(int x, int y) { return (x / y); } int modulo(int x, int y) { return (x % y); }