【c语言】不用库函数实现strcmp

// 不用库函数实现strcmp

#include 
#include 

int my_strcmp( char const *p,char const *q )
{
	assert( ( *p != NULL ) && ( *q != NULL ) );
	while( *p == *q )
	{
		if( *p == '\0')
		{
			return 0;
		}
		p++;
		q++;
	}
		
		if( *p > *q )
		{
			return 1;
		}
		else
		{
			return -1;
		}

}


int main()
{
	char *p = "aebh";
	char *q = "addfg";
	printf("%d\n",my_strcmp( p,q ));

	return 0;
}

你可能感兴趣的:(【c语言】不用库函数实现strcmp)