I'm a Software Engineer. My specialty is developing Android and iOS Mobile Apps with React Native.
I also have knowledge in Backend development with Laravel.
📚 I am currently taking the Common Core (42-cursus) at School 42
#include <unistd.h>
size_t
ft_strlen(const char *s)
{
if (!s) return 0;
size_t i = 0;
for (; *s; i++, s++);
return i;
}
int
main(void)
{
char *slogan = "I will never give up\n";
write(1, slogan, ft_strlen(slogan));
return (0);
}

