Added public files

Roughly added all public files. Probably missed some, though.
diff --git a/doc/efun/atan2 b/doc/efun/atan2
new file mode 100644
index 0000000..e4cd78a
--- /dev/null
+++ b/doc/efun/atan2
@@ -0,0 +1,16 @@
+SYNOPSIS
+        float atan2 (int|float y, int|float x)
+
+BESCHREIBUNG
+        Liefert den Winkel der Polarkoordinaten des Punktes (x, y) im
+        Bereich (-Pi, Pi].
+
+        Man beachte die Vertauschung der Koordinaten x und y in der
+        Parameter-Liste, die die Abfolge in der Steigungs-Winkel-Umrechnung
+        atan(y / x) widerspiegelt.
+
+AENDERUNGEN
+        LDMud 3.2.9: Ganzzahlen (Integers) als Argumente hinzugefuegt.
+
+SIEHE AUCH
+        sin(E), cos(E), tan(E), asin(E), acos(E), atan(E)