70 lines
1.0 KiB
C
70 lines
1.0 KiB
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 <ifaddrs.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include "../include/tree.h"
|
|
|
|
// Defines
|
|
#define BUFF_SIZE 1024
|
|
#define ARG_SIZE 32
|
|
|
|
// Types definitions
|
|
struct hist_sub
|
|
{
|
|
char **content;
|
|
int length;
|
|
int pos;
|
|
};
|
|
|
|
struct history
|
|
{
|
|
char **content;
|
|
int length;
|
|
int pos;
|
|
char *curr_command;
|
|
|
|
struct hist_sub sub;
|
|
};
|
|
|
|
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 |