Update doc/efun/ aus Driversourcen.
Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.
Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/or_bits b/doc/efun/or_bits
index 98a558d..fcfc59c 100644
--- a/doc/efun/or_bits
+++ b/doc/efun/or_bits
@@ -1,18 +1,13 @@
SYNOPSIS
string or_bits(string str1, string str2)
-BESCHREIBUNG
- <str1> und <str2> sind beides Bitstrings. Das Resultat von or_bits()
- ist ein Bitstring, der das binaere Oder von <str1> und <str2>
- enthaelt, d.h. ein String, in dem ein Bit gesetzt ist, wenn es
- in <str1> oder <str2> oder in beiden gesetzt ist.
+DESCRIPTION
+ <str1> and <str2> are both bitstrings. The result of the function
+ is a bitstring with the binary-or of <str1> and <str2>,
+ ie. a string in which a bit is set if the corresponding
+ bit in <str1> or <str2> (or both) is set.
- Jedes Zeichen enthaelt 6 Bits. In jedem Zeichen kann deshalb eine
- Zahl von 0 bis 63 gespeichert werde (2^6=64). Das erste Zeichen
- ist der Leerschlag " " mit dem Wert 0. Das erste Zeichen im String
- ist jenes mit den niedrigsten Bits (0-5).
-
-BEISPIELE
+EXAMPLES
string s1, s2, s3;
s1 = set_bit("", 3); s1 = set_bit(s1, 15); -> s1 is "( ("
@@ -22,6 +17,6 @@
-> s3 is now "8 (", ie. a bitstring with bits 3, 4 and 15 set.
-SIEHE AUCH
+SEE ALSO
clear_bit(E), set_bit(E), test_bit(E), next_bit(E), last_bit(E),
count_bits(E), and_bits(E), xor_bits(E), invert_bits(E), copy_bits(E)