43fd6a76ba/library/files.retro

User picture

Commiter: Charles Childers

Author: Charles Childers

Revision: 43fd6a76ba


File Size: 506 Bytes

(March 07, 2010 03:53 UTC) About 2 years ago

continue with reorgs

 
Show/hide line numbers
( ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ )
( 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 ;