diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | include/pipex.h | 16 |
2 files changed, 17 insertions, 1 deletions
@@ -2,7 +2,7 @@ NAME := pipex CC = cc CFLAGS = -Wall -Wextra -Werror -HEADERS = +HEADERS = -Iinclude LIBS = VPATH := src diff --git a/include/pipex.h b/include/pipex.h new file mode 100644 index 0000000..a742093 --- /dev/null +++ b/include/pipex.h @@ -0,0 +1,16 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* pipex.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2024/04/29 14:04:28 by dkaiser #+# #+# */ +/* Updated: 2024/04/29 14:05:02 by dkaiser ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef PIPEX_H +# define PIPEX_H + +#endif // PIPEX_H |
