mirror of
https://github.com/Savapitech/42sh.git
synced 2026-03-18 21:50:35 +01:00
26 lines
356 B
C
26 lines
356 B
C
/*
|
|
** EPITECH PROJECT, 2025
|
|
** __
|
|
** File description:
|
|
** _
|
|
*/
|
|
|
|
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
#include <stdint.h>
|
|
|
|
#define PROMPT_HEADER "┌─["
|
|
#define IF_PROMPT "if? "
|
|
|
|
enum {
|
|
RETURN_SUCCESS = 0,
|
|
RETURN_FAILURE = 1
|
|
};
|
|
|
|
typedef struct {
|
|
uint8_t flags;
|
|
char *script_file;
|
|
char *cmd;
|
|
} opt_t;
|
|
#endif /* COMMON_H */
|