honor restored

This commit is contained in:
2023-12-19 15:31:49 +02:00
parent 07afea3a7b
commit 5b1fface91
29 changed files with 76 additions and 779 deletions

20
tests/str_print.c Normal file
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);
}