代码搜索:jstring
找到约 391 项符合「jstring」的源代码
代码结果 391
www.eeworm.com/read/229812/4750875
gml mtob.gml
.func mtob _fmtob
#include
size_t mtob( const unsigned char *str, size_t nm );
.ixfunc2 '&Jstring' &func
.if &farfnc eq 1 .do begin
size_t far _fmtob( const unsigned char far *str, si
www.eeworm.com/read/100698/15866818
h getkey.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#include
/* Header for class GetKey */
#ifndef _Included_GetKey
#define _Included_GetKey
#ifdef __cplusplus
extern "C" {
#endif
#undef
www.eeworm.com/read/100698/15866819
h setkey.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#include
/* Header for class SetKey */
#ifndef _Included_SetKey
#define _Included_SetKey
#ifdef __cplusplus
extern "C" {
#endif
#undef
www.eeworm.com/read/229812/4744448
c jstrrchr.c
#include
#include
void main()
{
printf( "%s\n", jstrrchr( "abcdeabcde", 'a' ) );
if( jstrrchr( "abcdeabcde", 'x' ) == NULL )
printf( "NULL\n" );
}
www.eeworm.com/read/229812/4744412
c jmstojis.c
#include
#include
void main()
{
unsigned short c;
c = jmstojis( 0x8171 );
printf( "%x\n", c );
}
www.eeworm.com/read/229812/4744429
c jistojms.c
#include
#include
void main()
{
unsigned short c;
c = jistojms( 0x2152 );
printf( "%x\n", c );
}
www.eeworm.com/read/190666/5180619
c final_method.c
#include
jstring
Java_final_1method_meth (JNIEnv *env, jobject thisv)
{
return (*env)->NewStringUTF (env, "zardoz has spoken");
}
www.eeworm.com/read/229812/4744418
c jperror.c
#include
#include
void main()
{
FILE *fp;
fp = fopen( "data.fil", "r" );
if( fp == NULL ) {
jperror( "Unable to open file" );
}
}
www.eeworm.com/read/229812/4744442
c jstrspn.c
#include
#include
void main()
{
printf( "%d\n", jstrspn( "out to lunch", "aeiou" ) );
printf( "%d\n", jstrspn( "out to lunch", "xyz" ) );
}
www.eeworm.com/read/470713/1453369
c final_method.c
#include
JNIEXPORT jstring JNICALL
Java_final_1method_meth (JNIEnv *env, jobject thisv)
{
return (*env)->NewStringUTF (env, "zardoz has spoken");
}