Differences From Artifact [6d57431160]:
- File src/util.c — part of check-in [9472f708c9] at 2025-07-07 15:11:23 on branch gen-uuid — Add a function for generating a random (v4) UUID and a test command using it. (user: danield size: 27966)
To Artifact [93b628d56f]:
- File src/util.c — part of check-in [44e5125f8f] at 2025-07-23 16:01:31 on branch gen-uuid — Replace a call to mprintf() with fossil_strdup(). (user: danield size: 27966) [more...]
| ︙ | |||
924 925 926 927 928 929 930 | 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 | - + |
*p++ = '-'; /* Add a dash after byte 4, 6, 8, and 12 */
}
*p++ = zDigits[aBlob[i]>>4];
*p++ = zDigits[aBlob[i]&0xf];
}
*p = 0;
|
| ︙ |