11 lines
133 B
C++
Raw Normal View History

2015-11-17 17:22:37 +01:00
2020-02-01 23:06:01 +01:00
#include "B.h"
2015-11-17 17:22:37 +01:00
#include <jni.h>
#include <stdio.h>
2016-07-09 11:21:54 +02:00
JNIEXPORT void JNICALL Java_B_printName(JNIEnv*, jobject)
2015-11-17 17:22:37 +01:00
{
printf("B\n");
}