lawd help meh

This commit is contained in:
2023-08-20 15:38:49 +03:00
parent 1c607342b4
commit 64070c8152
4 changed files with 59 additions and 12 deletions

View File

@@ -7,7 +7,7 @@
*
* Returns: Length of String
*/
int _strlen(char *str)
int _strlen(const char *str)
{
if (*str)
return (1 + _strlen(++str));