11 lines
134 B
C++
Raw Normal View History

2016-03-13 13:35:51 +01:00
#include <jni.h>
#include <stdio.h>
#include "C.h"
JNIEXPORT void JNICALL Java_C_printName(JNIEnv *, jobject)
{
printf("C\n");
}