Added public files
Roughly added all public files. Probably missed some, though.
diff --git a/doc/efun/find_object b/doc/efun/find_object
new file mode 100644
index 0000000..2a4f0d0
--- /dev/null
+++ b/doc/efun/find_object
@@ -0,0 +1,23 @@
+SYNOPSIS:
+ object find_object(string str)
+
+DESCRIPTION:
+ Find an object with the object_name str. If the object isn't loaded,
+ it will not be found.
+
+EXAMPLE:
+ object obj;
+ obj = find_object("std/thing");
+ obj = find_object("std/thing.c");
+ obj = find_object("/std/thing");
+ obj = find_object("/std/thing.c");
+
+ All four statements are equal.
+
+ obj = find_object("/std/thing#42");
+
+ returns the clone whose object_name is "std/thing#42", if
+ it exists.
+
+SEE ALSO:
+ find_living(E), find_player(E), object_name(E)