Update doc/efun/ aus Driversourcen.
Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.
Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/invert_bits b/doc/efun/invert_bits
index 0836df7..cf69e02 100644
--- a/doc/efun/invert_bits
+++ b/doc/efun/invert_bits
@@ -1,17 +1,21 @@
SYNOPSIS
string invert_bits(string str)
-BESCHREIBUNG
- Invertiert den Status aller Bits im Bitstring <str> und liefert den
- neuen String zurueck. Dabei bleibt die Laenge von <str>, also die
- gesamte Anzahl Bits, die gleiche.
+DESCRIPTION
+ Invert the status of all bits in bitstring <str> and return the
+ new string.
-BEISPIELE
+ Note that the total number of bits (ie the string length) stays
+ the same.
+
+EXAMPLES
string s;
- s = set_bit("", 3); s = set_bit(s, 4); s = set_bit(s, 15);
- --> s ist nun "8 ("
- invert_bits(s) --> liefert "G_W"
-SIEHE AUCH
+ s = set_bit("", 3); s = set_bit(s, 4); s = set_bit(s, 15);
+ --> s is now "8 ("
+
+ invert_bits(s) --> returns "G_W"
+
+SEE ALSO
set_bit(E), clear_bit(E), test_bit(E), last_bit(E), and_bits(E),
or_bits(E), xor_bits(E), count_bits(E), copy_bits(E)