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

@@ -0,0 +1,20 @@
#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 = "pls";
/*
* Brain ded to think bout test cond
*/
_printf(" suh %s\n%s\n", test_0, test_1);
return (0);
}