about summary refs log tree commit diff stats
path: root/filesystem.mu
Commit message (Collapse)AuthorAgeFilesLines
* 4262 - literal 'null'Kartik Agaram2018-06-171-2/+2
|
* 3483Kartik K. Agaram2016-10-081-1/+1
|
* 3389Kartik K. Agaram2016-09-171-2/+2
|
* 3380Kartik K. Agaram2016-09-171-1/+1
| | | | | One more place we were missing expanding type abbreviations: inside container definitions.
* 3379Kartik K. Agaram2016-09-171-3/+3
| | | | Can't use type abbreviations inside 'memory-should-contain'.
* 3238Kartik K. Agaram2016-08-211-2/+0
| | | | | | Clean up primitive for reading from file. Never return EOF character. Stop using null character to indicate EOF as well. Instead, always use a second product to indicate EOF, and require calls to use it.
* 3225 - testable interface for writing filesKartik K. Agaram2016-08-181-9/+15
| | | | | | | | For example usage of file operations, see filesystem.mu. Is it ugly that we don't actually write to disk unless we wait for the writing routine to exit? Maybe there's a nice way to wrap it. At any rate, all buffering is explicit, which seems a win compared to *nix.
* 3224Kartik K. Agaram2016-08-181-3/+3
|
* 3203 - testable interface for reading a fileKartik K. Agaram2016-08-161-0/+16
This commit was written by Stephen Malina. Thanks also to Stephen for running into the bug of commit 3202.