factor/extra/io/encodings/ascii/ascii.factor

16 lines
494 B
Factor
Raw Normal View History

2008-02-21 16:22:49 -05:00
! Copyright (C) 2008 Daniel Ehrenberg.
! See http://factorcode.org/license.txt for BSD license.
USING: io io.encodings strings kernel math sequences byte-arrays io.encodings ;
2008-02-16 17:25:45 -05:00
IN: io.encodings.ascii
: encode-check<= ( string stream max -- )
[ pick > [ encode-error ] [ stream-write1 ] if ] 2curry each ;
2008-02-16 17:25:45 -05:00
TUPLE: ascii ;
M: ascii stream-write-encoded ( string stream encoding -- )
2008-02-22 21:21:23 -05:00
drop 127 encode-check<= ;
2008-02-16 17:25:45 -05:00
M: ascii decode-step
drop dup 128 >= [ decode-error ] [ swap push ] if ;