Files
printf/tests/str_print.c
LinlyBoi 6c756ea867 yes
2023-08-21 11:39:20 +03:00

20 lines
300 B
C

#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";
/*
* Brain ded to think bout test cond
*/
_printf("%s \n", test_0);
return (_printf("hey, %s", test_0));
}