home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 (1993) / nebula.bin / SourceCode / MiniExamples / FindIt / cUtils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-09  |  491 b   |  18 lines

  1. /* 
  2.  * cUtils.h
  3.  *
  4.  * Purpose:
  5.  *        These c routines implement a text search.
  6.  *
  7.  * You may freely copy, distribute, and reuse the code in this example.
  8.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  9.  * fitness for any particular use.
  10.  *
  11.  * Written by: Mary McNabb
  12.  * Created: Apr 91
  13.  *
  14.  */
  15. extern char *textInString(char *text, char *string, BOOL ignoreCase);
  16. extern char *textInStringReverse(char *text, char *string, char* stringStart,
  17.                  BOOL ignoreCase);
  18.