No description
| src | ||
| .gitignore | ||
| anne_uuid.h | ||
| build.zig | ||
| build.zig.zon | ||
| Jenkinsfile | ||
| LICENSE | ||
| README.md | ||
Zig Uuid
A super simple library providing C-compatible randomly-generated 128 bit unique identifiers.
Usage (zig):
- Add the module to the imports of your module.
- Create a uuid:
Uuid.new() - Check if two uuids are the same:
Uuid.eql(other_uuid)
Usage (C):
- Include
anne_uuid.h - Link against
anne_uuid.a - Create a uuid:
uuid_new() - Check if two uuids are the same:
uuid_eql(first, second)