]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/base64/base64.factor
Slices over specialized arrays can now be passed to C functions, written to binary...
[factor.git] / basis / base64 / base64.factor
index 1a0648cef8b92f2037438ddc2686e24617e3ade3..9a577409364b1a4d545576f4fbbfa64cbc0e9e69 100644 (file)
@@ -2,7 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: combinators io io.binary io.encodings.binary
 io.streams.byte-array kernel math namespaces
-sequences strings io.crlf ;
+sequences strings ;
 IN: base64
 
 ERROR: malformed-base64 ;
@@ -35,7 +35,7 @@ SYMBOL: column
 : write1-lines ( ch -- )
     write1
     column get [
-        1 + [ 76 = [ crlf ] when ]
+        1 + [ 76 = [ B{ CHAR: \r CHAR: \n } write ] when ]
         [ 76 mod column set ] bi
     ] when* ;