Merge remote-tracking branch 'origin/main'

This commit is contained in:
Andrew Scott 2024-02-01 15:37:08 -05:00
commit 31aff769cb
Signed by: a
GPG key ID: 7CD5A5977E4931C1
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@
// our well-known "import" for Zig // our well-known "import" for Zig
const std = @import("std"); const std = @import("std");
// and here the new the import for C // and here the new import for C
const c = @cImport({ const c = @cImport({
@cInclude("unistd.h"); @cInclude("unistd.h");
}); });

View file

@ -20,7 +20,7 @@
// //
// Zig provides all the necessary functions to change the bits inside // Zig provides all the necessary functions to change the bits inside
// a variable. It is distinguished whether the bit change leads to an // a variable. It is distinguished whether the bit change leads to an
// overflow or not.The details are in the Zig documentation in section // overflow or not. The details are in the Zig documentation in section
// 10.1 "Table of Operators". // 10.1 "Table of Operators".
// //
// Here are some examples of how the bits of variables can be changed: // Here are some examples of how the bits of variables can be changed: