Nothing to see here

This commit is contained in:
2023-08-22 23:14:13 +03:00
parent 0f9928b611
commit 2d212866ec
28 changed files with 735 additions and 76 deletions

View File

@@ -1,19 +0,0 @@
#include "../main.h"
/**
* main - test strlen
* Return: 0 if yes, 1 if no
*/
int main(void)
{
char *str;
int len;
str = "hello";
len =_strlen(str);
if (len == 5)
return (0);
else
return (1);
}