mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
17 lines
294 B
C++
17 lines
294 B
C++
#include <string.h>
|
|
#include <jni.h>
|
|
|
|
#include <AndroidMathUtility/AndroidMathUtility.h>
|
|
|
|
extern "C" {
|
|
|
|
JNIEXPORT jint JNICALL Java_org_upp_AndroidMath_AndroidMath_power(
|
|
JNIEnv *,
|
|
jclass,
|
|
jint number,
|
|
jint n)
|
|
{
|
|
return AndroidMathUtility::Power(number, n);
|
|
}
|
|
|
|
} // extern "C"
|