2016-03-13 13:35:51 +01:00
|
|
|
|
2020-02-01 23:06:01 +01:00
|
|
|
#include "C.h"
|
|
|
|
|
2016-03-13 13:35:51 +01:00
|
|
|
#include <jni.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2016-07-09 11:21:54 +02:00
|
|
|
JNIEXPORT void JNICALL Java_C_printName(JNIEnv*, jobject)
|
2016-03-13 13:35:51 +01:00
|
|
|
{
|
|
|
|
printf("C\n");
|
|
|
|
}
|