retroforth/source/interfaces/io/sockets.forth
crc e23b64acfa rre/unix: begin stubs for sockets support
FossilOrigin-Name: ee14bb80e6cf17e501e5fa43bd724646bb5add9c6068418bc80a7065145a2b73
2019-06-05 20:33:09 +00:00

13 lines
270 B
Forth

~~~
{{
'io:Sockets var
:identify
@io:Sockets n:zero? [
#7 io:scan-for dup n:negative?
[ drop 'IO_DEVICE_TYPE_0004_NOT_FOUND s:put nl ]
[ !io:Sockets ] choose ] if ;
---reveal---
:io:socket-operation identify @io:Sockets io:invoke ;
}}
~~~