Skip to content

Commit 82bfe94

Browse files
committed
task 2
1 parent a0b354a commit 82bfe94

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

0x08-recursion/2-strlen_recursion.c

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#include "main.h"
2+
3+
/**
4+
* _strlen_recursion - Returns the length of a string.
5+
* @s: The string to be measured.
6+
*
7+
* Return: The length of the string.
8+
*/
9+
int _strlen_recursion(char *s)
10+
{
11+
int len = 0;
12+
13+
if (*s)
14+
{
15+
len++;
16+
len += _strlen_recursion(s + 1);
17+
}
18+
19+
return (len);
20+
}

0 commit comments

Comments
 (0)