maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
stack_control_2.c File Reference
#include "tokens.h"
Include dependency graph for stack_control_2.c:

Go to the source code of this file.

Functions

void build_linked_list (t_token **tokens, char **argv)
 

Function Documentation

◆ build_linked_list()

void build_linked_list ( t_token **  tokens,
char **  argv 
)

Definition at line 15 of file stack_control_2.c.

16{
17 int i;
18
19 i = 0;
20 while (argv[i])
21 {
22 add_node(tokens, argv[i]);
23 i++;
24 }
25}
void add_node(t_token **head, char *str)

References add_node().

Here is the call graph for this function: