WarpPI/src/main/jni/TestJNI.c
2017-12-11 18:09:00 +01:00

10 lines
208 B
C

#include <jni.h>
#include <stdio.h>
#include "TestJNI.h"
JNIEXPORT void JNICALL Java_org_warp_picalculator_TestJNI_sayHello(JNIEnv *env, jobject thisObj)
{
printf("Hello World!\n");
return;
}