-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_tablen.c
More file actions
25 lines (23 loc) · 1.02 KB
/
ft_tablen.c
File metadata and controls
25 lines (23 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tablen.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nle-roux <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/03 17:56:48 by nle-roux #+# #+# */
/* Updated: 2023/12/04 16:14:06 by nle-roux ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
size_t ft_tablen(const char **tab)
{
size_t length;
length = 0;
while (tab && *tab)
{
length++;
tab++;
}
return (length);
}