1
0
mirror of https://github.com/KeyZox71/ft_minipowershell.git synced 2025-05-14 00:08:47 +02:00

」 feat(libft): added a very cool feature !

This commit is contained in:
2024-04-24 10:53:46 +02:00
parent 28128acd72
commit 59b810ffa4
64 changed files with 2063 additions and 0 deletions

23
libft/str/ft_strlen.c Normal file
View File

@ -0,0 +1,23 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlen.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/30 18:15:57 by adjoly #+# #+# */
/* Updated: 2024/03/12 15:07:08 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "../libft.h"
size_t ft_strlen(const char *s)
{
const char *tmp;
tmp = s;
while (*tmp)
tmp++;
return (tmp - s);
}