fc349e2cf1/library/files.retro
Commiter: Charles Childers
Author: Charles Childers
Revision: fc349e2cf1
File Size: 506 Bytes
(March 07, 2010 03:53 UTC) About 2 years ago
continue with reorgs
( ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ )
( Copyright [c] 2010, Charles Childers )
( License: ISC )
( ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ )
' files open
: slurp ( a"- )
:r fopen dup
if
swap repeat 2dup fread not if 0 swap ! fclose drop ;then 1+ again
else
drop 0 swap !
then ;
: >file ( $h- )
push repeat @+ dup 0 =if rdrop 2drop ;then
r fwrite 0 =if rdrop 2drop ;then again ; |