home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 344_02 / stristr.h < prev    next >
Text File  |  1989-10-28  |  537b  |  27 lines

  1.  
  2. /*
  3.  *      HEADER:         ;
  4.  *      TITLE:          stristr() PROTOTYPE;
  5.  *      DATE:           10/27/1989;
  6.  *      VERSION:        1.0;
  7.  *      FILENAME:       STRISTR.H;
  8.  *      SEE-ALSO:       STRISTR.C, PB.DOC;
  9.  *      AUTHORS:        Michael Kelly;
  10.  */
  11.  
  12. /*
  13.  *  avoid multiple includes
  14.  */
  15. #ifndef STRISTR_H
  16. #define STRISTR_H 1
  17. #include <string.h>
  18. #include <mem.h>
  19.  
  20.  
  21. /*
  22.  *  case insensitive version of strstr() standard string function
  23.  */
  24. char *stristr(const char *string, const char *substr);
  25.  
  26. #endif
  27.