Revision 509a9409c3ac77103960177950d2d5c1ac3ade7a authored by Brad King on 05 March 2019, 14:42:58 UTC, committed by Brad King on 05 March 2019, 14:42:58 UTC
2 parent s 5c0ef41 + e427c7c
Raw File
C.cpp

#include <jni.h>
#include <stdio.h>

#include "C.h"

JNIEXPORT void JNICALL Java_C_printName(JNIEnv*, jobject)
{
  printf("C\n");
}
back to top