blob: 0d26a20d2a637d3abd414d14a3426e1b016d4bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}
|