20 lines
273 B
C
20 lines
273 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";
|
|
char test_1[] = "H,e,j";
|
|
/*
|
|
* Brain ded to think bout test cond
|
|
*/
|
|
|
|
return (0);
|
|
}
|