【C语言库函数源代码】
【本程序在Dev C++ 4.9.9.2 下编译通过】
/*
Compare the two strings for lexical order. Stops the comparison when the
following occurs: (1) strings differ, (2) the end of the strings is reached,
or (3) count characters have been compared. For the purposes of the comparison,
upper case characters are converted to lower case.
字符串比较函数,比较字符串src和dst的前count个字符,但是不区分大小写,大写字母
会被转换为小写字母来进行比较。如:"abc_" < "ABCD" ,因为 "_" < "d"。当源字符串
大于目标字符串的时候,返回>0;当源字符串等于目标字符串的时候,返回=0。当源字符串