1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* strstr.c --
*
* Source code for the "strstr" library routine.
*
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* RCS: @(#) $Id: strstr.c,v 1.2 1998/09/14 18:39:45 stanton Exp $
*/
/*
*----------------------------------------------------------------------
*
* strstr --
*
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* strstr.c --
*
* Source code for the "strstr" library routine.
*
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* RCS: @(#) $Id: strstr.c,v 1.2.34.1 2002/02/05 02:21:57 wolfsuit Exp $
*/
/*
*----------------------------------------------------------------------
*
* strstr --
*
|
60
61
62
63
64
65
66
67
68
|
}
if (*a++ != *b++) {
break;
}
}
b = substring;
}
return (char *) 0;
}
|
|
|
60
61
62
63
64
65
66
67
68
|
}
if (*a++ != *b++) {
break;
}
}
b = substring;
}
return NULL;
}
|