Skip to content
builtin_set.c 389 B
Newer Older
Seblu's avatar
Seblu committed
/*
** builtin_set.c for 42sh in /goinfre/seblu/42sh/src/builtin
**
** Made by Seblu
** Login   <luttri_s@epita.fr>
**
** Started on  Thu May 11 09:32:30 2006 Seblu
** Last update Thu May 11 09:38:54 2006 Seblu
*/

#include <stdio.h>
#include "builtin.h"

int	builtin_set(char *argv[], struct s_42sh *sh)
{
   printf("set: not yet implemeted\n");
   sh = sh;
   argv = argv;
   return 1;
}