No description
Find a file
2025-08-22 22:00:04 -04:00
src init 2025-08-11 14:47:30 -04:00
.gitignore init 2025-08-11 14:47:30 -04:00
anne_uuid.h init 2025-08-11 14:47:30 -04:00
build.zig add missing optimize arg 2025-08-22 22:00:04 -04:00
build.zig.zon add missing optimize arg 2025-08-22 22:00:04 -04:00
Jenkinsfile change benchmark slug 2025-08-14 21:22:20 -04:00
LICENSE init 2025-08-11 14:47:30 -04:00
README.md init 2025-08-11 14:47:30 -04:00

Zig Uuid

A super simple library providing C-compatible randomly-generated 128 bit unique identifiers.

Usage (zig):

  1. Add the module to the imports of your module.
  2. Create a uuid: Uuid.new()
  3. Check if two uuids are the same: Uuid.eql(other_uuid)

Usage (C):

  1. Include anne_uuid.h
  2. Link against anne_uuid.a
  3. Create a uuid: uuid_new()
  4. Check if two uuids are the same: uuid_eql(first, second)