test-static-lib/test.c

8 lines
191 B
C
Raw Normal View History

2020-05-17 23:16:40 +02:00
#include <test_static_library.h>
#include <stdio.h>
int main(void) {
printf("Program should print \"Hello World <param-2>\" by calling static library function.\n");
hello(12);
return 0;
}