-
Home: Basic commands for contributors
-
Data Structure: data structures used in the project
-
Functions: the scope of functions might be used in the project
-
Git Commit Message Standard: rules for clean commit messages
valgrind --track-fds=yes ./minishellvalgrind --leak-check=full ./minishellhttps://github.com/LucasKuhn/minishell_testerhttps://github.com/zstenger93/42_minishell_testervalgrind --leak-check=full --show-leak-kinds=all --suppressions=mshell.supp ./minishellall erros + supp
valgrind --leak-check=full --trace-children=yes --gen-suppressions=all --show-leak-kinds=all --track-fds=yes --error-limit=no --suppressions=mshell.supp ./minishellall errors
valgrind --leak-check=full --track-origins=yes --trace-children=yes --gen-suppressions=all --show-leak-kinds=all --track-fds=yes --error-limit=no ./minishellFind all memory allocation functions
grep -rnE '\b(malloc|calloc|ft_calloc|realloc|ft_realloc|strdup|ft_strdup|strndup|ft_strndup|ft_substr|asprintf|vasprintf)\b' ./src