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

19
tests/str_print.c Normal file
View File

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