名称：
	set_bit - 设定一个位元字串 (bitstring) 中的一个位元 (bit)。
语法：
	string set_bit( string str, int n );

	字串 set_bit( 字串 字串, 整数 n );
用法：
	传回一个设定“str”第“n”位元的字串。请注意，原来的字串“str”并没
	有更动内容。

	“n”的最大值有其上限，设定在驱动程式 config 档的“单一位元栏位之最
	大位元”(maximum bits in a bitfield)。

	如果有必要，新的字串会自动加长。

	在可以印出的字串中，每一个位元组 (byte) 含有 6 个位元。
参考：
	clear_bit, test_bit
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.Aug.28.	v22 版
