maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
list_len_char.c
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* list_len_char.c :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: rocky <marvin@42.fr> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2024/04/15 16:48:44 by rocky #+# #+# */
9/* Updated: 2024/04/15 16:51:03 by rocky ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13int list_len_char(char a[])
14{
15 int i;
16
17 i = 0;
18 while (a[i] != '\0')
19 i++;
20 return (i);
21}
int list_len_char(char a[])