重写strpbrk函数

程序通过vs2008编译

#include <iostream>
#include <string>
#define NUL '\0'
char* find_char(const char* source,const char*check_char )//find_char函数完成strpbrk函数功能
{
    size_t len=strlen(check_char);
    while (*source++ != NUL)
    {
        for (;len>0;--len)
        {
            if (*source == *check_char++)
            {
                return (char*)source;
            }
        }
    }
    return 0;
}
int main()
{
    char* aim;
    aim =find_char("abc","bbb");
    printf("%s\n",aim);
    system("pause");
    return 0;
}

你可能感兴趣的:(重写strpbrk函数)