Update doc/efun/ aus Driversourcen.
Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.
Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/widthof b/doc/efun/widthof
index 6312d3d..a16fa14 100644
--- a/doc/efun/widthof
+++ b/doc/efun/widthof
@@ -1,16 +1,17 @@
SYNOPSIS
int widthof(mapping map)
-BESCHREIBUNG
- Liefert die Anzahl Values pro Key im Mapping <map>. Wenn <map> 0 ist,
- ist das Resultat 0.
+DESCRIPTION
+ Returns the number of values per key of mapping <map>.
+ If <map> is 0, the result is 0.
-BEISPIELE
- mapping map = (["foo" : 1;2]);
- widthof(map) ergibt 2.
+EXAMPLES
+ mapping m = ([ "foo": 1;2 ]);
+ widthof(m) --> returns 2
-GESCHICHTE
- Eingefuehrt in LDMud 3.2.6.
+HISTORY
+ Introduced in LDMud 3.2.6.
-SIEHE AUCH
- sizeof(E), mkmapping(E), m_reallocate(E), m_values(E), unmkmapping(E)
+SEE ALSO
+ sizeof(E), mkmapping(E), m_reallocate(E), m_values(E),
+ unmkmapping(E)