blob: 1a58a55fee477e81f9309b3eef48c19604e61ea3 [file] [log] [blame]
#include <stdlib.h>
#include <findclass.h>
JNIEXPORT jclass JNICALL
Java_findclass_doit (JNIEnv *env, jclass klass, jstring name)
{
const char *buf = (*env)->GetStringUTFChars (env, name, NULL);
jclass k = (*env)->FindClass (env, buf);
(*env)->ReleaseStringUTFChars (env, name, buf);
return k;
}