diff options
author | emax <emax@FreeBSD.org> | 2008-09-15 23:47:19 +0000 |
---|---|---|
committer | emax <emax@FreeBSD.org> | 2008-09-15 23:47:19 +0000 |
commit | 4bd0f0bff647ae52b48ebc786c7f142172e149d3 (patch) | |
tree | e459f2ca834b943954577515abcb27d4b7d59843 /include | |
parent | f367e5ff4526e7cb90eb32b8594a31c3ebd093c1 (diff) | |
download | FreeBSD-src-4bd0f0bff647ae52b48ebc786c7f142172e149d3.zip FreeBSD-src-4bd0f0bff647ae52b48ebc786c7f142172e149d3.tar.gz |
Add missing prototypes for uuid_enc,dec_le,be() functions.
Pointy hat goes to me.
MFC after: 3 days
Diffstat (limited to 'include')
-rw-r--r-- | include/uuid.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/uuid.h b/include/uuid.h index 13e65ea..79ab76b 100644 --- a/include/uuid.h +++ b/include/uuid.h @@ -54,6 +54,10 @@ void uuid_from_string(const char *, uuid_t *, uint32_t *); uint16_t uuid_hash(const uuid_t *, uint32_t *); int32_t uuid_is_nil(const uuid_t *, uint32_t *); void uuid_to_string(const uuid_t *, char **, uint32_t *); +void uuid_enc_le(void *, const uuid_t *); +void uuid_dec_le(const void *, uuid_t *); +void uuid_enc_be(void *, const uuid_t *); +void uuid_dec_be(const void *, uuid_t *); __END_DECLS #endif /* _UUID_H_ */ |