mirror of git://gcc.gnu.org/git/gcc.git
				
				
				
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			306 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			306 B
		
	
	
	
		
			C
		
	
	
	
#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;
 | 
						|
}
 |