Documented '_strlen'

This commit is contained in:
2023-08-19 22:01:55 +03:00
parent ed9384e11f
commit 6a7403a7c4

View File

@@ -1,7 +1,11 @@
#include "main.h"
/**
* _strlen - nuts
* _strlen - Takes string and return its length
*
* @str: Address to the head of the string (Array of Characters) (Lost btw)
*
* Returns: Length of String
*/
int _strlen(char *str)
{