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

Go to the source code of this file.

Functions

int ft_len_2d_arr (char **array)
 

Function Documentation

◆ ft_len_2d_arr()

int ft_len_2d_arr ( char **  array)

Definition at line 15 of file ft_len_2d_arr.c.

16{
17 int count;
18
19 count = 0;
20 while (array && array[count])
21 count++;
22 return (count);
23}

Referenced by split_loc_vars().

Here is the caller graph for this function: