mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 22:10:33 +00:00
Use seLen as sugested, and fix typos
This commit is contained in:
@@ -2594,10 +2594,10 @@ when not defined(JS): #and not defined(nimscript):
|
||||
## Closes the file.
|
||||
|
||||
proc endOfFile*(f: File): bool {.tags: [], benign.}
|
||||
## Returns true if `f` is at the end.
|
||||
## Returns true iff `f` is at the end.
|
||||
|
||||
proc fileError*(f: File): bool {.tags: [], benign.}
|
||||
## Returns true if the error indicator of `f` is set.
|
||||
## Returns true iff the error indicator of `f` is set.
|
||||
|
||||
proc readChar*(f: File): char {.
|
||||
importc: "fgetc", header: "<stdio.h>", tags: [ReadIOEffect].}
|
||||
|
||||
@@ -38,7 +38,6 @@ proc fseek(f: File, offset: clong, whence: int): int {.
|
||||
importc: "fseek", header: "<stdio.h>", tags: [].}
|
||||
proc ftell(f: File): int {.importc: "ftell", header: "<stdio.h>", tags: [].}
|
||||
proc ferror(f: File): int {.importc: "ferror", header: "<stdio.h>", tags: [].}
|
||||
proc feof(f: File): int {.importc: "feof", header: "<stdio.h>", tags: [].}
|
||||
proc setvbuf(stream: File, buf: pointer, typ, size: cint): cint {.
|
||||
importc, header: "<stdio.h>", tags: [].}
|
||||
proc memchr(s: pointer, c: cint, n: csize): pointer {.
|
||||
@@ -153,11 +152,11 @@ proc readAllFile(file: File, len: int): string =
|
||||
let bytes = readBuffer(file, addr(result[0]), len)
|
||||
if endOfFile(file):
|
||||
if bytes < len:
|
||||
result = substr(result, 0 , bytes - 1)
|
||||
result.setLen(bytes)
|
||||
elif fileError(file):
|
||||
raiseEIO("error while reading from file")
|
||||
else:
|
||||
# We red all the bytes but did not reach the EOF
|
||||
# We read all the bytes but did not reach the EOF
|
||||
# Try to read it as a buffer
|
||||
result = readAllBuffer(file)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user