diff --git a/core/io/encodings/binary/about.txt b/core/io/encodings/binary/about.txt new file mode 100644 index 0000000000..a1eb4bc664 --- /dev/null +++ b/core/io/encodings/binary/about.txt @@ -0,0 +1 @@ +Dummy encoding for binary I/O diff --git a/core/io/encodings/binary/authors.txt b/core/io/encodings/binary/authors.txt new file mode 100644 index 0000000000..f990dd0ed2 --- /dev/null +++ b/core/io/encodings/binary/authors.txt @@ -0,0 +1 @@ +Daniel Ehrenberg diff --git a/core/io/encodings/binary/binary-docs.factor b/core/io/encodings/binary/binary-docs.factor new file mode 100644 index 0000000000..f8be5054df --- /dev/null +++ b/core/io/encodings/binary/binary-docs.factor @@ -0,0 +1,5 @@ +USING: help.syntax help.markup ; +IN: io.encodings.binary + +HELP: binary +{ $class-description "This is the encoding descriptor for binary I/O." } ; diff --git a/core/io/encodings/binary/binary.factor b/core/io/encodings/binary/binary.factor new file mode 100644 index 0000000000..b58f9836c0 --- /dev/null +++ b/core/io/encodings/binary/binary.factor @@ -0,0 +1,6 @@ +USING: kernel io.encodings ; + +TUPLE: binary ; + +M: binary init-decoding drop ; +M: binary init-encoding drop ;