IAMISSAM
9/6/2018 - 7:43 AM

my_strlen

my_strlen

int	my_strlen(char* str)
{
	int	size = -1;

	while (str[++size]);
	return (size);
}