added t1 t2 and readme

This commit is contained in:
2020-05-17 12:16:22 +02:00
committed by GitHub
parent 77d02fc093
commit 778bbe1ff2
16 changed files with 117 additions and 0 deletions

8
trial1/include/fun2.c Normal file
View File

@@ -0,0 +1,8 @@
#include "fun2.h"
int fun2()
{
printf("Hello from FN2\n");
return 0;
}

1
trial1/include/fun2.h Normal file
View File

@@ -0,0 +1 @@
int fun2();