aboutsummaryrefslogtreecommitdiff
path: root/std/io.zig
AgeCommit message (Expand)Author
2017-12-10add self-hosted parsing and rendering to main testsAndrew Kelley
2017-12-04read a fileAndrew Kelley
2017-12-04rename builtin.is_big_endian to builtin.endianAndrew Kelley
2017-11-29better error code for File.getEndPos failureAndrew Kelley
2017-11-10fix test failure on 32 bit windowsAndrew Kelley
2017-11-10add windows implementation of io.File.getEndPosAndrew Kelley
2017-11-10add a std lib test for reading and writing filesAndrew Kelley
2017-11-07std.io: introduce buffered I/O and change APIAndrew Kelley
2017-11-06fix typos in std.io (#589)scurest
2017-10-31breaking change to std.io APIAndrew Kelley
2017-10-15std.io: fix bug when writing large bufferAndrew Kelley
2017-10-15fix std.io.InStream for windowsAndrew Kelley
2017-10-15fix child process stdio piping behavior on windowsAndrew Kelley
2017-10-15use correct integer type for windows BOOLAndrew Kelley
2017-10-14implement io.OutStream.openMode for windowsAndrew Kelley
2017-10-14std.io: remove unused constantsAndrew Kelley
2017-10-10fix std.io.OutStream.close for windowsAndrew Kelley
2017-10-09implement std.io.InStream for windowsAndrew Kelley
2017-10-09implement os.path.real for windows and update allocator interfaceAndrew Kelley
2017-10-03fix isatty for macOS and libc (#523)Snorre
2017-09-10std.io.InStream: add readLine function (#458)jean-dao
2017-08-27all behavior tests passing for macosAndrew Kelley
2017-08-27fixups to linux buildAndrew Kelley
2017-08-27progress toward tests passing on MacOSAndrew Kelley
2017-06-14partial implementation of printing floating point numbers with errol3Andrew Kelley
2017-06-04progress toward hello world without libc in windowsAndrew Kelley
2017-05-19change slicing syntax from ... to ..Andrew Kelley
2017-05-01`@import("builtin")` instead of `@compileVar`Andrew Kelley
2017-04-30zig build: support install for zig artifactsAndrew Kelley
2017-04-24better stack traces for ELF x86_64Andrew Kelley
2017-04-21zig build system supports building a libraryAndrew Kelley
2017-04-20delete test_artifacts directory when tests completeAndrew Kelley
2017-04-03zig build system: add setLinkerScript and setTargetAndrew Kelley
2017-04-02zig build system progressAndrew Kelley
2017-03-26organize std and make import relative to current fileAndrew Kelley
2017-03-26replace "&&" and "||" with "and" and "or"Andrew Kelley
2017-03-26new unreachable syntaxAndrew Kelley
2017-03-09break off some of std.io into std.fmt, generalize printfAndrew Kelley
2017-02-28rename CBuf to Buffer0 and some minor std API changesAndrew Kelley
2017-02-24add compile error for ignoring return valueAndrew Kelley
2017-02-23add character format specifier to std.io.OutStream.printfAndrew Kelley
2017-02-12printf: only include + sign on signed ints if width specifiedAndrew Kelley
2017-02-12slice and array re-work plus some misc. changesAndrew Kelley
2017-02-11std.io.parseUnsigned buf parameter is constAndrew Kelley
2017-02-11fix crash on string literal with character code >= 128Andrew Kelley
2017-02-09lots of miscellaneous things all in one big commitAndrew Kelley
2017-02-07std.io supports printing integers as hex valuesAndrew Kelley
2017-02-02remove ability to mark if and switch as inlineAndrew Kelley
2017-01-31fix crash when passing void to var args functionAndrew Kelley
2017-01-24printf var args proof of conceptAndrew Kelley