#include "../main.h" #include /** * 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 */ return (_printf("%s", test_0)); }