Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/stand/ficl/softwords/fileaccess.fr
34860 views
\ #if FICL_WANT_FILE
\ ** 
\ ** File Access words for ficl
\ ** submitted by Larry Hastings, [email protected]
\ **
\

: r/o 1 ;
: r/w 3 ; 
: w/o 2 ; 
: bin 8 or ; 

: included
    r/o bin open-file 0= if
        locals| f | end-locals
        f include-file
    else
        drop
    endif
    ;

: include parse-word included ;

\ #endif