home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / string / strstr.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  428 b   |  25 lines

  1. @node strstr, string
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <string.h>
  6.  
  7. char *strstr(const char *s1, const char *s2);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function finds the first occurrence of @var{s2} in @var{s1}. 
  13.  
  14. @subheading Return Value
  15.  
  16. A pointer within @var{s1}, or @code{NULL} if @var{s2} wasn't found.
  17.  
  18. @subheading Example
  19.  
  20. @example
  21. if (strstr(command, ".exe"))
  22.   do_exe();
  23. @end example
  24.  
  25.