diff options
| author | 2023-12-27 06:51:29 -0600 | |
|---|---|---|
| committer | 2023-12-27 06:51:29 -0600 | |
| commit | 5e141e336c3a2cb8921edcd7af6f14a29ff63942 (patch) | |
| tree | 80df676cd02693746b505aecbec5c9ee529b5e7b /src/uuid/uuid.h | |
| parent | refactor instances (diff) | |
add cheap SHA1 implementation
Diffstat (limited to 'src/uuid/uuid.h')
| -rw-r--r-- | src/uuid/uuid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/uuid/uuid.h b/src/uuid/uuid.h index 7ddeeb4..eb1d41e 100644 --- a/src/uuid/uuid.h +++ b/src/uuid/uuid.h @@ -28,5 +28,6 @@ bool l2_uuid_from_string(uuid_t *id, const char *str); bool l2_uuid_from_string_short(uuid_t *id, const char *str); int l2_uuid_compare(const uuid_t *c1, const uuid_t *c2); +void l2_uuid_copy(uuid_t *restrict dest, const uuid_t *restrict src); #endif /* include guard */ |
