aboutsummaryrefslogtreecommitdiff
path: root/vendor/libftm/src/mat/ftm_matdestroy.c
blob: 4d39270cf12a20d28ebc41f8a861af1fb472582d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ftm_matdestroy.c                                   :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/05/11 12:56:00 by charles           #+#    #+#             */
/*   Updated: 2020/05/11 12:59:41 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "libftm_mat.h"

void		ftm_matdestroy(t_ftmmat *mat)
{
	free(mat->m);
	free(mat);
}