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

The file containing the my_list_to_array function. More...

#include "mylist.h"

Functions

void ** my_list_to_array (node_t *list)
 Converts the linked list to an array.
 

Detailed Description

The file containing the my_list_to_array function.

The file containing the my_list_to_array_circled function.

Author
Nicolas TORO
Gianni TUERO

Function Documentation

◆ my_list_to_array()

void ** my_list_to_array ( node_t * list)

Converts the linked list to an array.

Parameters
listThe linked list to convert
Returns
void ** The array created from the linked list
Author
Nicolas TORO