名稱：
	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 版
