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

17
tests/append.c Normal file
View File

@@ -0,0 +1,17 @@
#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);
}