norme on BT_func
This commit is contained in:
parent
e3c06e5978
commit
c2f9ecbcab
1 changed files with 1 additions and 4 deletions
|
|
@ -6,7 +6,7 @@
|
||||||
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
/* By: wescande <wescande@student.42.fr> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2017/03/24 15:03:02 by wescande #+# #+# */
|
/* Created: 2017/03/24 15:03:02 by wescande #+# #+# */
|
||||||
/* Updated: 2017/03/24 15:30:13 by wescande ### ########.fr */
|
/* Updated: 2017/03/24 17:00:56 by wescande ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
|
@ -26,11 +26,8 @@ int builtin_func(const char *path,
|
||||||
if (!argv || !argv[0] || argv[1])
|
if (!argv || !argv[0] || argv[1])
|
||||||
return (SH_ERR("usage: %s", FUNC_USAGE) ? 1 : 1);
|
return (SH_ERR("usage: %s", FUNC_USAGE) ? 1 : 1);
|
||||||
list = data_singleton()->lst_func;
|
list = data_singleton()->lst_func;
|
||||||
DG();
|
|
||||||
int toto = 0;
|
|
||||||
while (list)
|
while (list)
|
||||||
{
|
{
|
||||||
DG(">>>>>>>%d", toto++);
|
|
||||||
if (!(ast = list->content))
|
if (!(ast = list->content))
|
||||||
return (SH_ERR("unexpected error"));
|
return (SH_ERR("unexpected error"));
|
||||||
name = token_to_argv(((t_astnode *)(*ast)->item)->data.cmd.token, 1);
|
name = token_to_argv(((t_astnode *)(*ast)->item)->data.cmd.token, 1);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue