如何在C中打印ext2超级块的s_uuid

时间:2017-09-06 20:42:19

标签: c uuid ext2 superblock

我创建一个变量来存储superblock的s_uuid的值。但是我在如何以这种形式打印像xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx这样的变量时遇到了麻烦。我试图在%x和%s中使用printf来打印我的变量,但它不起作用。

我想知道UUID如何存储在文件系统中以及如何在控制台中打印而不是错误的编码。

1 个答案:

答案 0 :(得分:0)

s_uuid在超级块中定义为: u8 s_uuid [16];

要以上述格式将其打印到控制台:

uint8_t s_uuid[16] = {0xf3, 0x58, 0x6b, 0xaf, 0xb5, 0xaa, 0x49, 0xb5, 
                      0x8d, 0x6c, 0x05, 0x69, 0x28, 0x4c, 0x63, 0x9f};

printf("%02x%02x%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\n",
    s_uuid[0], s_uuid[1], s_uuid[2], s_uuid[3], s_uuid[4], s_uuid[5], s_uuid[6], s_uuid[7], 
    s_uuid[8], s_uuid[9], s_uuid[10], s_uuid[11], s_uuid[12], s_uuid[13], s_uuid[14], s_uuid[15]);