strstr.c
资源名称:tcpmp.rar [点击查看]
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:0k
源码类别:
Windows CE
开发平台:
C/C++
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <string.h>
- char *strstr(const char *haystack, const char *needle)
- {
- const char *scan;
- size_t len;
- char firstc;
- firstc = *needle;
- len = strlen(needle);
- for (scan = haystack; *scan != firstc || strncmp(scan, needle, len); )
- if (!*scan++)
- return NULL;
- return (char *)scan;
- }