aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: d4c6729548a636dafc38b4f5fae27fe830c2000e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "minishell.h"

int main(int argc, char **argv, char **envp)
{

	(void)argc;
	(void)argv;
	(void)envp;
	// init
	//    find executable in PATH
	
	// user_loop
	//  get user input
	//  parse input
	//  if error:
	//     continue
	//  interpret command
	//  waiting for process to end
	
	// destroy
	

	return (0);
}