diff options
Diffstat (limited to '071read-line.subx')
-rw-r--r-- | 071read-line.subx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/071read-line.subx b/071read-line.subx index ab336c52..ee52e44f 100644 --- a/071read-line.subx +++ b/071read-line.subx @@ -6,7 +6,7 @@ # read bytes from 'f' until (and including) a newline and store them into 's' # 's' fails to grow if and only if no data found # just abort if 's' is too small -read-line-buffered: # f : (address buffered-file), s : (address stream byte) +read-line-buffered: # f : (addr buffered-file), s : (addr stream byte) # pseudocode: # while true # if (s->write >= s->length) abort @@ -216,7 +216,7 @@ test-read-line-buffered-reads-final-line-until-Eof: # read bytes from 'f' until (and including) a newline and store them into 's' # 's' fails to grow if and only if no data found # just abort if 's' is too small -read-line: # f : (address stream byte), s : (address stream byte) +read-line: # f : (addr stream byte), s : (addr stream byte) # pseudocode: # while true # if (s->write >= s->length) abort |