aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strlen.c
blob: 0964c64963859b6e1b817478a3a518a71c0cda1a (plain)
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
/* ************************************************************************** */
/*                                                          LE - /            */
/*                                                              /             */
/*   ft_strlen.c                                      .::    .:/ .      .::   */
/*                                                 +:+:+   +:    +:  +:+:+    */
/*   By: rbousset <marvin@le-101.fr>                +:+   +:    +:    +:+     */
/*                                                 #+#   #+    #+    #+#      */
/*   Created: 2019/10/07 16:32:28 by rbousset     #+#   ##    ##    #+#       */
/*   Updated: 2019/10/13 08:35:37 by rbousset    ###    #+. /#+    ###.fr     */
/*                                                         /                  */
/*                                                        /                   */
/* ************************************************************************** */

#include <stddef.h>

size_t
	ft_strlen(const char *s)
{
	const char *ptr;

	ptr = s;
	while (ptr && *ptr)
		ptr++;
	return (ptr - s);
}