#define _UTIL_C_ #include #include #include #include "main.h" #include "util.h" #define IS_2BYTEWORD( _a_ ) ( (char)(0x80) <= (_a_) && (_a_) <= (char)(0xFF) ) #define PRIME 211 int hashpjw ( char* s ) { char *p; unsigned int h= 0 ,g; for( p = s ; *p ; p ++ ){ h = ( h<< 4 ) + (*p); if( (g = h & 0xf0000000) != 0){ h = h ^ (g>>24); h = h ^ g; } } return h % PRIME; } int getHash ( char* s ) { int i; int h=0; for(i=0;; i++){ if( s[i] == 0 ){ break; } h += s[i]; } return h; } void easyGetTokenFromString( char *src,int count,char*output,int len ) { int i; int counter = 0; if( len <= 0 )return; #define ISSPACETAB( c ) ( (c) == ' ' || (c) == '\t' ) for(i=0;;i++){ if( src[i]=='\0'){ output[0] = '\0'; return; } if( i > 0 && ! ISSPACETAB( src[i-1] ) && ! ISSPACETAB( src[i] ) ){ continue; } if( ! ISSPACETAB( src[i]) ){ counter++; if( counter == count){ int j; for(j=0;j= sizeofdest ) break; if( IS_2BYTEWORD( src[i] ) ){ if( destindex + 2 >= sizeofdest ) break; dest[destindex] = src[i]; dest[destindex+1] = src[i+1]; destindex += 2; i ++; continue; } for( j = 0; j= sizeofdest ) /* '\0'坌互箫曰卅中及匹仇仇匹蔽曰 */ break; /* // 蝈剩及ㄠ田奶玄 井升丹井毛民尼永弁 if( IS_2BYTEWORD( src[i] ) ){ // 蝈剩分[公及桦宁反ㄠ田奶玄芴坌卞褡引六月[ // 凶分仄ㄠ田奶玄仄井卅中桦宁反公丹仄卅中 // 公及引引ㄡ田奶玄鳖霜 if( destindex + 2 >= sizeofdest )break; dest[destindex] = src[i]; dest[destindex+1] = src[i+1]; destindex += 2; i ++; continue; } */ for( j = 0; j= destlen ){ return -1; } else { strcat( dest, append ); } return 0; } char *chop( char *s ) { int l = strlen(s); if( l >= 1 ){ s[l-1]=0; } return s; } // CoolFish: Family 2001/5/30 void easyGetTokenFromBuf(char *src, char delim, int count, char *output, int len) { int i; int counter = 0; int wordflag = 0; if( len <= 0 ) return; #define ISSEPARATE( c ) ((c) == delim) for( i=0; ; i++){ if( src[i] == '\0' ){ output[0] = '\0'; return; } if(IS_2BYTEWORD(src[i])){ if( i>0 && wordflag == 1 ){ i++; wordflag = 1; continue; } if( i>0 && !ISSEPARATE(src[i-1]) && !ISSEPARATE(src[i])){ i++; wordflag = 1; continue; } wordflag = 1; }else{ if( i>0 && wordflag ){ wordflag = 0; continue; } if( i>0 && !ISSEPARATE(src[i-1]) && !ISSEPARATE(src[i])){ wordflag = 0; continue; } wordflag = 0; } if( !ISSEPARATE(src[i]) ){ counter++; if( counter == count ){ int j; for ( j=0; j