fixed some stuff (100%)

This commit is contained in:
LinlyBoi
2023-08-21 11:22:58 +03:00
parent ac332f48ac
commit 64d38b771d
4 changed files with 27 additions and 28 deletions

View File

@@ -1,5 +1,5 @@
#include<../main.h>
#include<string.h>
#include "../main.h"
#include <string.h>
/**
* main - Tests if '%s' works within our printf.
@@ -10,10 +10,9 @@
int main(void)
{
char test_0[] = "Hej";
char test_1[] = "H,e,j";
/*
* Brain ded to think bout test cond
*/
return (_printf("%s", test_0));
return (0);
}