Files
printf/strings.c
2023-08-19 21:50:57 +03:00

13 lines
140 B
C

#include "main.h"
/**
* _strlen - nuts
*/
int _strlen(char *str)
{
if (*str)
return (1 + _strlen(str++));
else
return (0);
}