/* ** exec_semicolon.c for 42sh in /home/seblu ** ** Made by Seblu ** Login ** ** Started on Sat Mar 25 15:27:20 2006 Seblu ** Last update Sun Apr 9 12:04:03 2006 SIGOURE Benoit */ #include "execution.h" #include "mem.h" /*! ** Execution a semicolon node ** ** @param node node to treat ** @param sh sh data */ void exec_sepsemicolon(struct s_op *node, struct s_42sh *sh) { assert(node && sh); exec_node(node->left, sh); if (node->right) exec_node(node->right, sh); }