42sh 1.0.0
Create a shell in C
Loading...
Searching...
No Matches
my_params_to_list.c File Reference

The file containing the my_params_to_list function. More...

#include "mylist.h"

Functions

node_tmy_params_to_list (int ac, char *const *av)
 Creates a linked list from the arguments (argc and argv)
 

Detailed Description

The file containing the my_params_to_list function.

Author
Nicolas TORO

Function Documentation

◆ my_params_to_list()

node_t * my_params_to_list ( int ac,
char *const * av )

Creates a linked list from the arguments (argc and argv)

Parameters
acThe number of arguments
avThe array of arguments
Returns
node_t * The linked list created from the array of strings
Author
Nicolas TORO