#ifndef SHELL_H
	#define SHELL_H

	/* definicoes */
	typedef enum {
		CD,
		PWD,
		HELP,
		EXIT,
		UNKNOWN } TypeCommand ;

	/* prototypes */
	TypeCommand parse_comando ( char *comando ) ;
	void matafilho(int sinal);
#endif

