1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-12-25 20:21:25 -05:00

modified the docs to show iofs supports seek

This commit is contained in:
XeonSquared 2019-07-18 13:51:10 +10:00
parent 8a880406bc
commit 63cb1ceea4

View File

@ -57,7 +57,7 @@ function iofs.component.seek(fd,...)
end
end
function iofs.register(fname,fopen) -- Register a new iofs node with the name *fname* that will run the function *fopen* when opened. This function should return a function for read, a function for write, and a function for close, in that order.
function iofs.register(fname,fopen) -- Register a new iofs node with the name *fname* that will run the function *fopen* when opened. This function should return a function for read, a function for write, function for close, and optionally, a function for seek, in that order.
iofs.files[fname] = fopen
end