maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
test.h
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* test.h :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: dmdemirk <dmdemirk@student.42london.c +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2024/06/10 16:48:39 by dmdemirk #+# #+# */
9/* Updated: 2024/06/17 11:04:00 by dmdemirk ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13#ifndef TEST_H
14# define TEST_H
15
16# include "shell.h"
17
18/* env */
19void env_tests(t_ms_data *data, char **envp);
20
21/* pipe */
22void pipe_tests(t_ms_data *data);
23
24#endif
void pipe_tests(t_ms_data *data)
Definition pipe_test.c:22
void env_tests(t_ms_data *data, char **envp)
Definition env_test.c:25