Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
onos-felix
/
d9c80e4fd7c1eca425237b60df52de8a128c7175
/
.
/
simple
/
native
/
simple_bundle_foo_method.c
blob: a684abe4132836aef2f1a4de2db94dfeb278a312 [
file
] [
log
] [
blame
]
#include
"org_apache_felix_simple_Activator.h"
JNIEXPORT jstring JNICALL
Java_org_apache_felix_simple_Activator_foo
(
JNIEnv
*
env
,
jobject obj
)
{
char
*
cstr
=
"Hello!"
;
jstring jstr
=
(*
env
)->
NewStringUTF
(
env
,
cstr
);
return
jstr
;
}