mirror of
https://github.com/Savapitech/42sh.git
synced 2026-01-18 16:57:28 +01:00
18 lines
250 B
C
18 lines
250 B
C
/*
|
|
** EPITECH PROJECT, 2025
|
|
** __
|
|
** File description:
|
|
** _
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "exec.h"
|
|
|
|
void free_everything(exec_ctx_t *exec_ctx)
|
|
{
|
|
free_env(exec_ctx->env);
|
|
free_alias(exec_ctx->alias);
|
|
free(exec_ctx->history_command);
|
|
}
|