mirror of
https://github.com/Savapitech/42sh.git
synced 2026-03-18 21:50:35 +01:00
19 lines
249 B
C
19 lines
249 B
C
/*
|
|
** EPITECH PROJECT, 2025
|
|
** __
|
|
** File description:
|
|
** _
|
|
*/
|
|
|
|
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
#include "exec.h"
|
|
|
|
enum {
|
|
RETURN_SUCCESS = 0,
|
|
RETURN_FAILURE = 1
|
|
};
|
|
|
|
void free_everything(exec_ctx_t *exec_ctx);
|
|
#endif /* COMMON_H */
|