An open API service indexing awesome lists of open source software.

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.

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"));
```