Header files - 3lsy/minishell GitHub Wiki

Header directory

This is the header directory

Always include minishell.h

#include "minishell.h"

Files

The minishell.h is what we will always include on every C source file.

The evaluator functions and structures must be inside eval.h. The analyzer functions and structures must be inside analyzer.h.

The libraries.h are every external library needed to include. But they are already there.