//字符串之strcmp #include <iostream>#include<assert.h> #include<string.h> using namespace std; int strcmpT(const char * a,const char * b) { assert(a!=NULL&&b!=NULL); int ret=0; whi
一)strcmp()源代码 /****strcmp - compare two strings, returning less than, equal to, or greater than**Purpose:* STRCMP compares two strings and returns an integer* to indicate whether t