blob: 898db1be8ebf7a018beaf6957de1bbf7400877e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#include <string.h>
#include "nonstd/assert.h"
/** search for substring **/
char * strstr(const char *s1, const char *s2)
{
size_t l1 = 0;
size_t l2 = 0;
char *p = (char*)s1;
ASSERT_NONNULL(s1);
ASSERT_NONNULL(s2);
l2 = strlen(s2);
if (l2 == 0) {
return p;
}
l1 = strlen(s1);
do {
p = memchr(p, *s2, l1);
if (p == NULL || strcmp(p + 1, s2 + 1) == 0) {
break;
}
p++;
} while (p < s1 + l2);
/*
RETURN_FAILURE(CONSTANT(NULL));
RETURN_SUCCESS(a pointer to the located string);
*/
return p;
}
/***
finds the first occurrence of the string ARGUMENT(s2) in the string
ARGUMENT(s1). Specifying the empty string for ARGUMENT(s2) matches the first
character of ARGUMENT(s1).
***/
/*
STDC(1)
*/
|