env refactor: split imports over multiple files

This allows for potentially faster recompilation, by not triggering
recompilation for all env files if env_manip changes
This commit is contained in:
Khaïs COLIN 2025-02-19 16:39:18 +01:00
parent e445f668b3
commit dff68d5a8b
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo
5 changed files with 21 additions and 17 deletions

4
src/env/env_manip.c vendored
View file

@ -6,10 +6,12 @@
/* By: jguelen <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/12 18:29:12 by jguelen #+# #+# */
/* Updated: 2025/02/19 14:41:06 by khais ### ########.fr */
/* Updated: 2025/02/19 16:41:38 by khais ### ########.fr */
/* */
/* ************************************************************************** */
#include "env.h"
#include "env_convert.h"
#include "env_manip.h"
#include "libft.h"
#include "../ft_errno.h"