.TH strstr 3 "IRIT Version 6.0" 
.SH NAME
strstr()
.SH SYNOPSIS
.nf
.ft B
misc_lib/xgeneral.c:487

.nf
.ft B
char *strstr(char *s, char *Pattern)
.SH DESCRIPTION
Routine to search for a Pattern (no regular expression) in s. Returns
address in s of first occurance of Pattern, NULL if non found.
.SH PARAMETERS:

s: To search for Pattern in.

Pattern: To search in s.
.SH FUNCTION RETURN VALUE
char *:     Address in s where Pattern was first found, NULL otherwise.
.LP
.SH ORIGIN
(C) Copyright 1989/90-95 Gershon Elber, Technion, IIT
