1 /* hellolibrary.c - demonstrate library use with the NDK. 2 * This will be the library that gets called as wither a static or shared lib.*/ 3 4 #include <stdio.h> 5 6 int hellolibrary(char *msg) 7 { 8 printf("Library printing message: %s", msg); 9 return 0; 10 } 11