zig icon indicating copy to clipboard operation
zig copied to clipboard

General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

Results 2216 zig issues
Sort by recently updated
recently updated
newest added

Requirements: * faster than glibc malloc * faster than musl malloc * faster than mingw-w64 malloc * faster than jemalloc * faster than mimalloc Once it has been verified for...

enhancement
contributor friendly
optimization
standard library

Fix a typo in the CSS from commit 201dca323. ### TODO I checked the new rendering and the change is subtle, so I'm not sure if `flex-direction` should be `row`...

### Zig Version 0.11.0 ### Steps to Reproduce and Observed Behavior ## Steps - Clone [my repo](https://github.com/cscn-112/lab-2-class-construction-actual) or use [the template](https://github.com/cscn-112/lab-template) - cd cpp - Run any of the following:...

bug
os-macos

Here's a simple example of this problem: Let's say you're writing a password checker. Your algorithm looks like: ```zig // vulnerable function fn checkPass(hashed_password: []const u8, guessed_password: []const u8) bool...

proposal
accepted
research

``` + stage3/bin/zig build test docs --zig-lib-dir /Users/runner/work/zig/zig/build/../lib -Denable-macos-sdk -Dstatic-llvm -Dskip-non-native --search-prefix /Users/runner/zig+llvm+lld+clang-x86_64-macos-none-0.12.0-dev.467+0345d7866 run test std-native-ivybridge-ReleaseFast-single: error: 'test.non-blocking tcp server' failed run test std-native-ivybridge-ReleaseFast-single: error: while executing test 'test.ampersand', the...

bug
standard library

There should only be 1 panic handler function and it should be possible to override it by only providing one function. Furthermore, it should be the entry point from the...

enhancement
contributor friendly
breaking
standard library
proposal
accepted

i believe this finishes up #17916. might have missed some cases, please let me know!

### Zig Version 0.12.0-dev.1828+225fe6ddb ### Steps to Reproduce and Observed Behavior I am trying to link GLFW and GLAD. related headers in GLAD: ```h typedef void* (* GLADloadproc)(const char *name);...

bug
translate-c

This adds the missing documentation for most of the previously undocumented functions, alongside a few example usages in certain scenarios. This also removes the allocator parameter from Server and Server.init...

This should solve #18291. This required adapting resolvePosix for Uri into its own function. This also has the benefit of never returning relative paths, which used to be possible.