Added public files

Roughly added all public files. Probably missed some, though.
diff --git a/sys/ansi.h b/sys/ansi.h
new file mode 100644
index 0000000..4e4d244
--- /dev/null
+++ b/sys/ansi.h
@@ -0,0 +1,35 @@
+// MorgenGrauen MUDlib
+//
+// ansi.h -- Sequenzen fuer ANSI- und VT100-Terminals
+//
+// $Id: ansi.h,v 3.3 2000/02/12 16:18:42 Padreic Exp $
+
+#ifndef _ANSI_
+#define _ANSI_
+
+#define ANSI_BOLD ""
+#define ANSI_UNDERL ""
+#define ANSI_BLINK ""
+#define ANSI_INVERS ""
+
+#define ANSI_BLACK ""
+#define ANSI_RED ""
+#define ANSI_GREEN ""
+#define ANSI_YELLOW ""
+#define ANSI_BLUE ""
+#define ANSI_PURPLE ""
+#define ANSI_CYAN ""
+#define ANSI_WHITE ""
+
+#define ANSI_BG_BLACK ""
+#define ANSI_BG_RED ""
+#define ANSI_BG_GREEN ""
+#define ANSI_BG_YELLOW ""
+#define ANSI_BG_BLUE ""
+#define ANSI_BG_PURPLE ""
+#define ANSI_BG_CYAN ""
+#define ANSI_BG_WHITE ""
+
+#define ANSI_NORMAL ""
+
+#endif