fc349e2cf1/image/source/files.retro
Commiter: Charles Childers
Author: Charles Childers
Revision: fc349e2cf1
File Size: 418 Bytes
(February 27, 2010 02:30 UTC) About 2 years ago
add fsize to round out file I/O words
vocab files
((
0 constant :r 1 constant :r+ 2 constant :w
3 constant :w+ 4 constant :a 5 constant :a+
{{
: file.io ( n-f ) 4 out wait 4 in ;
---reveal---
: fopen ( $m-f ) -1 file.io ;
: fread ( hc-f ) -2 file.io ;
: fwrite ( ch-f ) -3 file.io ;
: fclose ( h -f ) -4 file.io ;
: fpos ( h -n ) -5 file.io ;
: fseek ( nh-f ) -6 file.io ;
: fsize ( h-n ) -7 file.io ;
}}
))
' files shut |