Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dfunc.c429 const char *zIn; in soundexFunc() local
442 zIn = argv[0]; in soundexFunc()
443 for(i=0; zIn[i] && !isalpha(zIn[i]); i++){} in soundexFunc()
444 if( zIn[i] ){ in soundexFunc()
445 zResult[0] = toupper(zIn[i]); in soundexFunc()
446 for(j=1; j<4 && zIn[i]; i++){ in soundexFunc()
447 int code = iCode[zIn[i]&0x7f]; in soundexFunc()