-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibft_funcs.c
More file actions
23 lines (20 loc) · 1.02 KB
/
libft_funcs.c
File metadata and controls
23 lines (20 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libft_funcs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tdehne <tdehne@student.42heilbronn.de> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/27 17:56:48 by tdehne #+# #+# */
/* Updated: 2022/04/27 17:57:08 by tdehne ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
size_t ft_strlen(const char *str)
{
size_t counter;
counter = 0;
while (str[counter] != '\0')
counter++;
return (counter);
}