21 lines
1,009 B
C
21 lines
1,009 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* exec_default.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: ariard <ariard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/01/31 19:29:59 by ariard #+# #+# */
|
|
/* Updated: 2017/02/05 22:18:50 by ariard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "exec.h"
|
|
|
|
int exec_default(t_btree **ast)
|
|
{
|
|
|
|
(void)ast;
|
|
// btree_delone(ast, &ast_free);
|
|
return (0);
|
|
}
|