diff options
author | jcid <devnull@localhost> | 2008-04-06 18:58:30 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-04-06 18:58:30 +0200 |
commit | 40334a7897e3b6f81ae957ae518e3e7afade32fe (patch) | |
tree | db514b3dc7ba42eaa5fb65f00d3060fb6422118f /dlib/dlib.c | |
parent | 7650ae10e77d0058fe617ef670bad60349b45fed (diff) |
- Added dStr_memmem() to dlib.
Diffstat (limited to 'dlib/dlib.c')
-rw-r--r-- | dlib/dlib.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dlib/dlib.c b/dlib/dlib.c index 78fa951d..862e642f 100644 --- a/dlib/dlib.c +++ b/dlib/dlib.c @@ -415,6 +415,26 @@ int dStr_cmp(Dstr *ds1, Dstr *ds2) } /* + * Return a pointer to the first occurrence of needle in haystack. + */ +char *dStr_memmem(Dstr *haystack, Dstr *needle) +{ + int i; + + if (needle && haystack) { + if (needle->len == 0) + return haystack->str; + + for (i = 0; i <= (haystack->len - needle->len); i++) { + if (haystack->str[i] == needle->str[0] && + !memcmp(haystack->str + i, needle->str, needle->len)) + return haystack->str + i; + } + } + return NULL; +} + +/* *- dList --------------------------------------------------------------------- */ |