| author | |
| committer | |
| log | 0082ed0ef1415d9c972348aae136b5684838c983 |
| tree | 4c0a05f844f3186437c724b8877d00dc33dd7760 |
| parent | 935f10502f9308b262c3d4b979a3fbe20baf670f |
2 files changed, 4 insertions(+), 4 deletions(-)
std/mem.zig+1-1| ... | ... | @@ -354,7 +354,7 @@ pub fn startsWith(comptime T: type, haystack: []const T, needle: []const T) bool |
| 354 | 354 | return if (needle.len > haystack.len) false else eql(T, haystack[0 .. needle.len], needle); |
| 355 | 355 | } |
| 356 | 356 | |
| 357 | const SplitIterator = struct { | |
| 357 | pub const SplitIterator = struct { | |
| 358 | 358 | buffer: []const u8, |
| 359 | 359 | split_bytes: []const u8, |
| 360 | 360 | index: usize, |
std/os/zen.zig+3-3| ... | ... | @@ -1,6 +1,6 @@ |
| 1 | /////////////////////////// | |
| 2 | //// IPC structures //// | |
| 3 | /////////////////////////// | |
| 1 | ////////////////////////// | |
| 2 | //// IPC structures //// | |
| 3 | ////////////////////////// | |
| 4 | 4 | |
| 5 | 5 | pub const Message = struct { |
| 6 | 6 | sender: MailboxId, |