Update doc/efun/ aus Driversourcen.
Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.
Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/and_bits b/doc/efun/and_bits
index d1d89a3..0ee8426 100644
--- a/doc/efun/and_bits
+++ b/doc/efun/and_bits
@@ -1,13 +1,13 @@
SYNOPSIS
string and_bits(string str1, string str2)
-BESCHREIBUNG
- <str1> und <str2> seien beides Bitstrings. Das Resultat von and_bits()
- ist ein Bitstring mit dem binaeren Und von <str1> und <str2>, das
- heisst ein String, in dem ein Bit nur gesetzt ist, wenn das
- entsprechende Bit in beiden Strings <str1> und <str2> gesetzt ist.
+DESCRIPTION
+ <str1> and <str2> are both bitstrings. The result of the function
+ is a bitstring with the binary-and of <str1> and <str2>,
+ ie. a string in which a bit is set only if both corresponding
+ bits in the input strings are set, too.
-BEISPIELE
+EXAMPLES
string s1, s2, s3;
s1 = set_bit("", 3); s1 = set_bit(s1, 15); -> s1 is "( ("
@@ -15,9 +15,8 @@
s3 = and_bits(s1, s2);
- --> s3 ist jetzt "8", d.h. ein Bitstring, in dem nur das 3. Bit
- gesetzt ist.
+ -> s3 is now "8", ie. a bitstring with bit 3 set only.
-SIEHE AUCH
+SEE ALSO
clear_bit(E), set_bit(E), test_bit(E), next_bit(E), last_bit(E),
count_bits(E), or_bits(E), xor_bits(E), invert_bits(E), copy_bits(E)