/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ftm_matmul.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/05/11 12:56:00 by charles #+# #+# */ /* Updated: 2020/05/11 13:27:08 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "libftm_mat.h" t_ftmmat *ftm_matmul(t_ftmmat *dst, t_ftmmat *other) { (void)other; return (dst); }