----- Original Message -----
From: "Jason Henderson" <[EMAIL PROTECTED]>
To: "Palm Developer Forum" <[EMAIL PROTECTED]>
Sent: Thursday, July 12, 2001 9:06 PM
Subject: RE: search function
> FindStrInStr
>
> CharPtr origStr;
> /* Standard null-terminated ascii string */
> CharPtr strToFind;
> /* Converted string to be passed to */
> /* FindStrInStr */
> BytePtr convTab;
> /* Conversion table returned from */
> /* GetCharCaselessValue*/
> Word i;
> convTab = GetCharCaselessValue();
> for (i=0; origStr[i] != 0; i++)
> {
> strToFind[i] = convTab[origStr[i]];
> }
> strToFind[i] = 0;
> /* Now pass strToFind to FindStrInStr...*/
I try this and I have the error:
Error : undefined identifier '_Obsolete__use_TxtCaselessCompare'
Starter.c line 7618 convTab = GetCharCaselessValue();
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/