maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
list_len_char.c File Reference

Go to the source code of this file.

Functions

int list_len_char (char a[])
 

Function Documentation

◆ list_len_char()

int list_len_char ( char  a[])

Definition at line 13 of file list_len_char.c.

14{
15 int i;
16
17 i = 0;
18 while (a[i] != '\0')
19 i++;
20 return (i);
21}