X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=man%2Fsd_id128_to_string.xml;h=593d0752d58c397725c20be5e8dd1802575be46e;hb=74d005783e355acc784d123024e33bbb66ef9ef1;hp=3a171550e987b3c515d24aa08fbd4d513a5c97dd;hpb=12355095821fc17529af5b6eaefa31c3c520be39;p=elogind.git diff --git a/man/sd_id128_to_string.xml b/man/sd_id128_to_string.xml index 3a171550e..593d0752d 100644 --- a/man/sd_id128_to_string.xml +++ b/man/sd_id128_to_string.xml @@ -59,7 +59,7 @@ int sd_id128_from_string - const char s[33], sd_id128_t* ret + const char* s, sd_id128_t* ret @@ -77,23 +77,28 @@ sd_id128_from_string() implements the reverse operation: it takes a 33 - character array with 32 hexadecimial digits - (terminated by NUL) and parses them back into an - 128 bit ID returned in - ret. + character string with 32 hexadecimal digits + (either lowercase or uppercase, terminated by NUL) and parses them back into an 128 + bit ID returned in + ret. Alternatively, this call + can also parse a 37 character string with a 128bit ID + formatted as RFC UUID. For more information about the sd_id128_t type see - sd-id1287. + sd-id1283. Note + that these calls operate the same way on all + architectures, i.e. the results do not depend on + endianess. When formatting a 128 bit ID into a string it is often easier to use a format string for printf3. This - is easly done using the + is easily done using the SD_ID128_FORMAT_STR and SD_ID128_FORMAT_VAL() macros. For more information see - sd-id1287. + sd-id1283. @@ -123,7 +128,7 @@ systemd1, - sd-id1287, + sd-id1283, printf3