Files
printf/tests/append.c
2023-12-19 15:31:49 +02:00

18 lines
198 B
C

#include "../main.h"
#include <stdio.h>
/**
*main - ensure append work
*/
int main(void)
{
char *str, c;
str = "hello";
c = 'c';
str = append(str, c);
_printf("%s\n", str);
return (0);
}