Skip to content
constant.h 431 B
Newer Older
/*
** constant.h for 42sh
**
** Made by Seblu
** Login   <Seblu@epita.fr>
**
** Started on  Fri Aug 25 03:39:03 2006 Seblu
Seblu's avatar
Seblu committed
** Last update Fri Oct 13 14:25:22 2006 seblu
*/

#ifndef CONSTANT_H_
# define CONSTANT_H_

Seblu's avatar
Seblu committed
typedef enum error
Seblu's avatar
Seblu committed
    ERROR_PARSE = 2,
    ERROR_FORK = 128,
    ERROR_REDIR = 1,
    ERROR_MEM = 42,
Seblu's avatar
Seblu committed
  } e_error;
Seblu's avatar
Seblu committed
typedef enum prompt {
  PROMPT_PS1 = 1,
  PROMPT_PS2 = 2,
  PROMPT_PS4 = 4
Seblu's avatar
Seblu committed
} e_prompt;