名称：
	repeat_string - 重复一个字串几次。
语法：
	string repeat_string( string, int );

	字串 repeat_string( 字串, 整数 );
用法：
	repeat_string 传回一个把第一个参数重复 n 次的字串，“n”是第二个参
	数。
	所以 repeat_string( "foo", 3 ) 会传回 "foofoofoo"。

	本函式需要在 options.h 中定义 PACKAGE_CONTRIB。
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.Aug.28.	v22 版
