#ifndef __PNSH_H__
#define __PNSH_H__

/*
 * PJ Waskiewicz
 * 2/05/2000
 * pnsh.h
 *
 * Headers for pnsh
 */

#define MY_MAX 1024
#define MAX_PIPES 128
#define U_PROMPT "==> "
#define SU_PROMPT "==# "
#define VERSION "0.9.87"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <signal.h>
#include <fcntl.h>

char **parser(char *, int *);
void redirect(char **, int);
void pipeme(char **, int);

#endif