mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
refactor: rename env_get_set.c to env_get.c
This commit is contained in:
parent
ab6a4d6368
commit
5b00059526
2 changed files with 3 additions and 4 deletions
2
Makefile
2
Makefile
|
|
@ -19,7 +19,7 @@ ifeq ($(CFLAGS),)
|
|||
endif
|
||||
export CFLAGS
|
||||
srcs = \
|
||||
src/env_get_set.c \
|
||||
src/env_get.c \
|
||||
src/parser/matchers/metacharacter.c \
|
||||
|
||||
objs = $(srcs:.c=.o)
|
||||
|
|
|
|||
|
|
@ -1,17 +1,16 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* env_get_set.c :+: :+: :+: */
|
||||
/* env_get.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jguelen <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/02/14 18:43:38 by jguelen #+# #+# */
|
||||
/* Updated: 2025/02/18 16:15:39 by khais ### ########.fr */
|
||||
/* Updated: 2025/02/18 16:23:24 by khais ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "env_manip.h"
|
||||
#include "libft.h"
|
||||
|
||||
/*
|
||||
** Get the key part of a line of envp
|
||||
Loading…
Add table
Add a link
Reference in a new issue