ossp-pkg/uuid/uuid.h 1.1 -> 1.2
--- uuid.h 2004/01/06 20:14:28 1.1
+++ uuid.h 2004/01/06 20:29:51 1.2
@@ -67,11 +67,9 @@
* "f81d4fae-7dec-11d0-a765-00a0c91e6bf6"
*/
-/* encoding lengths */
-#define UUID_LEN_BIN_BIT 128
-#define UUID_LEN_BIN_CHR (UUID_LEN_BIN_BIT / 8 /*bytes*/)
-#define UUID_LEN_STR_CHR (UUID_LEN_BIN_BIT / 4 /*nibbles*/ + 4 /*hyphens*/ + 1 /*nul*/)
-#define UUID_LEN_STR_BIT (UUID_LEN_STR_CHR * 8)
+/* encoding octet stream lengths */
+#define UUID_LEN_BIN (128 / 8 /*bytes*/)
+#define UUID_LEN_STR (128 / 4 /*nibbles*/ + 4 /*hyphens*/ + 1 /*nul*/)
/* return codes */
typedef enum {
|
|