Home
last modified time | relevance | path

Searched refs:zIn (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/lib/libsqlite/src/
H A Dfunc.c432 const char *zIn; in soundexFunc() local
445 zIn = argv[0]; in soundexFunc()
446 for(i=0; zIn[i] && !isalpha(zIn[i]); i++){} in soundexFunc()
447 if( zIn[i] ){ in soundexFunc()
448 zResult[0] = toupper(zIn[i]); in soundexFunc()
449 for(j=1; j<4 && zIn[i]; i++){ in soundexFunc()
450 int code = iCode[zIn[i]&0x7f]; in soundexFunc()