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

Go to the source code of this file.

Functions

int list_len_str (char *a[])
 

Function Documentation

◆ list_len_str()

int list_len_str ( char *  a[])

Definition at line 15 of file list_len_str.c.

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