https://github.com/doccaico/tiny-regex
tiny-regex-c built with Zig.
https://github.com/doccaico/tiny-regex
regex zig
Last synced: 8 months ago
JSON representation
tiny-regex-c built with Zig.
- Host: GitHub
- URL: https://github.com/doccaico/tiny-regex
- Owner: doccaico
- Created: 2025-07-21T05:35:19.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-21T06:41:16.000Z (11 months ago)
- Last Synced: 2025-07-21T07:30:22.744Z (11 months ago)
- Topics: regex, zig
- Language: Zig
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tiny-regex
[tiny-regex-c](https://github.com/kokke/tiny-regex-c) built with Zig.
## Fetch
```sh
$ zig fetch git+https://github.com/doccaico/tiny-regex
```
## How to use
```zig
// build.zig
const tiny_regex = b.dependency("tiny-regex", .{
.target = target,
.optimize = optimize,
});
exe.linkLibrary(tiny_regex.artifact("tiny-regex"));
```