18c3714f4f
Preserve semicolons in the value.
11 lines
134 B
C++
11 lines
134 B
C++
|
|
#include <jni.h>
|
|
#include <stdio.h>
|
|
|
|
#include "C.h"
|
|
|
|
JNIEXPORT void JNICALL Java_C_printName(JNIEnv *, jobject)
|
|
{
|
|
printf("C\n");
|
|
}
|