diff options
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r-- | mbbsd/edit.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c index e420b584..d8c7d80f 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -1182,21 +1182,6 @@ goto_line(int lino) redraw_everything = YEA; } -char * -strcasestr(const char *big, const char *little) -{ - char *ans = (char *)big; - int len = strlen(little); - char *endptr = (char *)big + strlen(big) - len; - - while (ans <= endptr) - if (!strncasecmp(ans, little, len)) - return ans; - else - ans++; - return 0; -} - /* * mode: 0: prompt 1: forward -1: backward */ |