mirror of
https://github.com/Savapitech/42sh.git
synced 2026-01-19 01:27:51 +01:00
18 lines
199 B
C
18 lines
199 B
C
/*
|
|
** EPITECH PROJECT, 2025
|
|
** 42sh
|
|
** File description:
|
|
** len_array
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
int len_array(char **array)
|
|
{
|
|
int i = 0;
|
|
|
|
while (array[i] != NULL)
|
|
i++;
|
|
return i;
|
|
}
|