diff options
-rw-r--r-- | my-common-code/api.c | 7 | ||||
-rw-r--r-- | my-common-code/api.h | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/my-common-code/api.c b/my-common-code/api.c new file mode 100644 index 0000000..ec24e0c --- /dev/null +++ b/my-common-code/api.c @@ -0,0 +1,7 @@ + +#include "api.h" + +int my_func(int a) +{ + return a * 3; +} diff --git a/my-common-code/api.h b/my-common-code/api.h new file mode 100644 index 0000000..b5a9c98 --- /dev/null +++ b/my-common-code/api.h @@ -0,0 +1 @@ +int my_func(int a); |