2006-07-21 16:31:39 -04:00
|
|
|
! Copyright (C) 2005, 2006 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2005-06-19 17:50:35 -04:00
|
|
|
IN: io
|
2006-07-21 16:31:39 -04:00
|
|
|
USING: io-internals kernel ;
|
2005-04-22 20:09:46 -04:00
|
|
|
|
|
|
|
: <file-reader> ( path -- stream ) open-read <reader> ;
|
|
|
|
: <file-writer> ( path -- stream ) open-write <writer> ;
|
2006-07-21 16:31:39 -04:00
|
|
|
: <file-r/w> ( path -- stream ) open-r/w dup <fd-stream> ;
|