Skip to content
exec_for.c 463 B
Newer Older
Seblu's avatar
Seblu committed
/*
** exec_for.c for 42sh in /home/seblu
**
** Made by Seblu
** Login   <seblu@epita.fr>
**
** Started on  Sat Mar 25 15:27:20 2006 Seblu
** Last update Sun May 21 18:46:45 2006 Seblu
*/

#include "execution.h"

#include "mem.h"

/*!
** Executre for instruction
**
** @param node node to treat
** @param sh sh info
*/
void		exec_for(struct s_for *node, struct s_42sh *sh)
{
  assert(node && sh);
  assert(0);
  node = node;
  sh = sh;
  /* explain for node  */
}