]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
uuid.h: style changes
authorOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:18 +0000 (11:23 -0700)
committerOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:18 +0000 (11:23 -0700)
open-vm-tools/lib/include/uuid.h

index 64f3aafe6e9a810469f4f6c0137c6371717330e5..4a40fe391d85ccdbba710d34a0092ae0a8239aa0 100644 (file)
@@ -143,20 +143,40 @@ struct {
 EFIGUID;
 
 
-Bool UUID_ConvertToBin(uint8 dest_id[UUID_SIZE], const char *text);
+Bool UUID_ConvertToBin(uint8 dest_id[UUID_SIZE],
+                       const char *text);
+
 char *UUID_ConvertToText(const uint8 id[UUID_SIZE]);
-void UUID_ConvertToTextBuf(const uint8 id[UUID_SIZE], char *buffer, size_t len);
-char *UUID_Create(const char *configFileFullPath, int schemeControl);
+
+void UUID_ConvertToTextBuf(const uint8 id[UUID_SIZE],
+                           char *buffer,
+                           size_t len);
+
+char *UUID_Create(const char *configFileFullPath,
+                  int schemeControl);
+
 char *UUID_CreateRandom(void);
+
 void UUID_CreateRandomRFC4122V4(UUIDRFC4122 *id);
+
 void UUID_CreateRandomEFI(EFIGUID *id);
-char *UUID_CreateRandomVpxStyle(uint8 vpxdId, UUIDStyle);
 
-Bool UUID_IsUUIDGeneratedByThatVpxd(const uint8 *id, int vpxdInstanceId);
-char *UUID_PackText(const char *text, char *pack, int packLen);
+char *UUID_CreateRandomVpxStyle(uint8 vpxdId,
+                                UUIDStyle);
+
+Bool UUID_IsUUIDGeneratedByThatVpxd(const uint8 *id,
+                                    int vpxdInstanceId);
+
+char *UUID_PackText(const char *text,
+                    char *pack,
+                    int packLen);
+
 char *UUID_ProperHostUUID(void);
+
 char *UUID_GetHostUUID(void);
+
 UUIDStyle UUID_GetStyle(const uint8 *id);
+
 /* like UUID_GetHostUUID, except gets actual host UUID */
 char *UUID_GetRealHostUUID(void);