mshell/include/shell.h

66 lines
982 B
C

#ifndef _SHELL_H
#define _SHELL_H
#define _GNU_SOURCE
#include <features.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <termios.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "../include/tree.h"
// Defines
#define BUFF_SIZE 1024
#define ARG_SIZE 32
// Types definitions
struct hist_tree
{
struct tree_node *r;
int length;
int pos;
};
struct history
{
char **content;
int length;
int pos;
struct hist_tree tree;
};
typedef struct
{
int last_status;
struct history hist;
char **envs;
} t_;
//Globals defenition
extern t_ term;
extern char *builtin[];
// Functions prototypes
int process_line(char *line, char ***args);
int launch(char **args);
void process_command();
int execute(char **args);
void sig_handler();
int sh_cd(char **args);
int sh_exit(char **args);
int sh_exec(char **args);
char *compose_prompt();
#define BUILTIN_NUM sizeof(builtin) / sizeof(char *)
#endif