mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-09 15:49:56 -05:00
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");
|
|
}
|