Added public files

Roughly added all public files. Probably missed some, though.
diff --git a/doc/efun/baseof b/doc/efun/baseof
new file mode 100644
index 0000000..d64cc20
--- /dev/null
+++ b/doc/efun/baseof
@@ -0,0 +1,16 @@
+SYNOPSIS
+        int baseof (struct b, struct s)
+
+DESCRIPTION
+        Test if the type of struct <b> is a base of struct <s> (the
+        values of <b> and <s> are irrelevant). Results are:
+          0: <b> is not a base of <s>, nor is <b> of equal type as <s>
+               (though <s> might be a base of <b>).
+          1: <b> is a true base of <s>
+          2: <b> and <s> are the same struct type
+
+HISTORY
+        Introducted in LDMud 3.3.344.
+
+SEE ALSO
+        structp(E), structs(LPC)