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

int main(int argc, char **argv, char **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);
}