名称：
	strcmp - 判断两个字串间的语句关系 (lexical relationship)。
语法：
	int strcmp( string one, string two );

	整数 strcmp( 字串 一, 字串 二 );
用法：
	此处使用的 strcmp() 与 C 函式库的 strcmp() 相同。如果字串“one”语
	句上在“two”之前〈即“one”在英文字典中的顺序在“two”之前〉，则 
	strcmp() 传回比 0 小的值。如果两个字串相同，则传回 0。如果“two”语
	句顺序在“one”之前，则 strcmp() 传回比 0 大的值。这个外部函式的比
	较功能在使用 sort_array() 排序时特别有用。
	
	注意，关系操作子 (relational operators)〈例如：&lt;、&gt; 等等〉也
	可以用于比较字串。
参考：
	sort_array
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.Aug.28.	v22 版
