maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
Functions
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
}
lib
libft
src
list_len_char.c
Generated by
1.9.8