Nothing to see here
This commit is contained in:
17
proven-point/tests/append.c
Normal file
17
proven-point/tests/append.c
Normal 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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user