diff options
Diffstat (limited to 'vendor/libftm/src/mat/ftm_matmul.c')
| -rw-r--r-- | vendor/libftm/src/mat/ftm_matmul.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/libftm/src/mat/ftm_matmul.c b/vendor/libftm/src/mat/ftm_matmul.c new file mode 100644 index 0000000..0d26a20 --- /dev/null +++ b/vendor/libftm/src/mat/ftm_matmul.c @@ -0,0 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ftm_matmul.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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); +} |
