自己实现的库函数mystrcmp

int mystrcmp(char* strDest,char* strSrc)
{
    assert((strDest!=NULL)&&(strSrc!=NULL));
    while((*strDest!='\0')&&(*strSrc!='\0')&&(*strDest==*strSrc))
    {
        strDest++;
        strSrc++;
    }
    return *strDest-*strSrc;
}

你可能感兴趣的:(自己实现的库函数mystrcmp)