STRSTR

Section: Basic C Library Functions (9)
Updated: February 2011
Index Return to Main Contents
 

NAME

strstr - Find the first substring in a NUL terminated string  

SYNOPSIS

char * strstr(const char * s1, const char * s2);
 

ARGUMENTS

s1

The string to be searched

s2

The string to search for
 

COPYRIGHT