mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
env_manip: sort funcs per structure that is being manipulated
This is instead of the operation that is being performed. I find it more logical this way, but if you prefer we can keep it as-is. I also put the identifier_isvalid func into parser/matchers
This commit is contained in:
parent
e985fcc562
commit
e445f668b3
13 changed files with 317 additions and 215 deletions
8
Makefile
8
Makefile
|
|
@ -19,10 +19,12 @@ ifeq ($(CFLAGS),)
|
|||
endif
|
||||
export CFLAGS
|
||||
srcs = \
|
||||
src/env_get.c \
|
||||
src/env_manip.c \
|
||||
src/env_manip_utils.c \
|
||||
src/env/env.c \
|
||||
src/env/env_convert.c \
|
||||
src/env/env_manip.c \
|
||||
src/env/envp.c \
|
||||
src/ft_errno.c \
|
||||
src/parser/matchers/identifier.c \
|
||||
src/parser/matchers/metacharacter.c \
|
||||
|
||||
objs = $(srcs:.c=.o)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue