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.c427 const char *zIn; in soundexFunc() local
440 zIn = argv[0]; in soundexFunc()
441 for(i=0; zIn[i] && !isalpha(zIn[i]); i++){} in soundexFunc()
442 if( zIn[i] ){ in soundexFunc()
443 zResult[0] = toupper(zIn[i]); in soundexFunc()
444 for(j=1; j<4 && zIn[i]; i++){ in soundexFunc()
445 int code = iCode[zIn[i]&0x7f]; in soundexFunc()