Update doc/efun/ aus Driversourcen.
Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.
Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/strrstr b/doc/efun/strrstr
index 8e39b79..113702a 100644
--- a/doc/efun/strrstr
+++ b/doc/efun/strrstr
@@ -1,27 +1,25 @@
SYNOPSIS
- int strrstr(string str, string muster)
- int strrstr(string str, string muster, int pos)
- int strrstr(bytes str, bytes muster)
- int strrstr(bytes str, bytes muster, int pos)
+ int strrstr(string str, string str2)
+ int strrstr(string str, string str2, int pos)
+ int strrstr(bytes str, bytes str2)
+ int strrstr(bytes str, bytes str2, int pos)
-BESCHREIBUNG:
- Liefert den Index des ersten Auftretens von <muster> im String <str>,
- ausgehend von der Position <pos> her rueckwaerts gesucht. Wird <pos>
- nicht angegeben, wird als Standard -1 gesetzt, was dem Ende von <str>
- entspricht. Mit anderen Worten: die Funktion liefert den Index des
- letzten Auftretens von <muster> vor <pos>.
+DESCRIPTION
+ Returns the index of the first occurance of <str2> in <str> searching
+ from position <pos> (default: -1 == string end) on backward.
+ In other words: the index of the last occurance of <str2> before
+ the given position <pos>.
- Der Index, der zurueck gegeben wird, ist relativ zum Beginn des
- Strings <str>.
+ The returned index is relativ to the beginning of the string.
- Wenn <muster> nicht in <str> gefunden wird, wird -1 zurueck gegeben.
+ If <str2> is not found in <str>, -1 is returned.
- Wenn <pos> negativ ist, bezeichnet <pos> den Index vom Ende des
- Strings aus gezaehlt. Dabei wird die Suche aber dennoch rueckwaerts
- im String <str> durchgefuehrt.
+ If <pos> is negativ, it designates the start position relative
+ to the end of the string (the search will still proceed towards
+ the beginning of the string).
-GESCHICHTE
- Eingefuehrt in LDMud 3.2.10.
+HISTORY
+ Introduced in LDMud 3.2.10.
-SIEHE AUCH
+SEE ALSO
strstr(E), strlen(E), sscanf(E), sprintf(E), explode(E)