home *** CD-ROM | disk | FTP | other *** search
- /*
- * cUtils.h
- *
- * Purpose:
- * These c routines implement a text search.
- *
- * You may freely copy, distribute, and reuse the code in this example.
- * NeXT disclaims any warranty of any kind, expressed or implied, as to its
- * fitness for any particular use.
- *
- * Written by: Mary McNabb
- * Created: Apr 91
- *
- */
- extern char *textInString(char *text, char *string, BOOL ignoreCase);
- extern char *textInStringReverse(char *text, char *string, char* stringStart,
- BOOL ignoreCase);
-