URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.jni/] [findclass.c] - Rev 830
Go to most recent revision | Compare with Previous | Blame | View Log
#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; }
Go to most recent revision | Compare with Previous | Blame | View Log