Update aus Driver-Doku

Change-Id: Ib3d5c973c1d09b9bed964c4c7fa486788eda54c4
diff --git a/doc/efun/to_bytes b/doc/efun/to_bytes
new file mode 100644
index 0000000..9740592
--- /dev/null
+++ b/doc/efun/to_bytes
@@ -0,0 +1,23 @@
+SYNOPSIS
+        bytes to_bytes(string unicode, string encoding)
+        bytes to_bytes(int* characters, string encoding)
+        bytes to_bytes(bytes bytesequence)
+        bytes to_bytes(int* bytes)
+
+DESCRIPTION
+        The first argument is converted to a byte sequence.
+
+        The first two variants convert a unicode string resp. a sequence
+        of unicode characters to a byte sequence that represents
+        the encoded string. The second argument denotes the name of
+        the encoding to use.
+
+        The third variant just returns the argument.
+
+        The fourth variant converts an array of bytes to a byte string.
+
+HISTORY
+        Introduced in LDMud 3.6.0.
+
+SEE ALSO
+        to_text(E), to_string(E), to_array(E)