#include "hello_EchoJNI.h"

JNIEXPORT jstring JNICALL Java_hello_EchoJNI_sayEcho
  (JNIEnv *env, jclass clazz, jstring message) {

	const char *s = env->GetStringUTFChars(message, NULL);
	printf("message=%s \n", s);
	env->ReleaseStringUTFChars(message, s);

    return message;
}


