Sign in
android
/
platform
/
development
/
2db89e8
/
.
/
pdk
/
pndk
/
samples
/
sample
/
hellolibrary.c
blob: 90f98fad1e396177854841a3a084cf56ed3ba94a [
file
]
/* hellolibrary.c - demonstrate library use with the NDK.
* This will be the library that gets called as wither a static or shared lib.*/
#include
<stdio.h>
int
hellolibrary
(
char
*
msg
)
{
printf
(
"Library printing message: %s"
,
msg
);
return
0
;
}