Changeset aaf9789c in mainline for uspace/lib/c/test/uuid.c
- Timestamp:
- 2019-02-11T23:08:42Z (6 years ago)
- Children:
- db29c34
- Parents:
- d5a89a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/test/uuid.c
rd5a89a3 raaf9789c 53 53 return false; 54 54 } 55 55 56 56 int f = (uuid.b[8] & 0x80) || (uuid.b[8] & 0x90); 57 57 f = f || (uuid.b[8] & 0xA0) || (uuid.b[8] & 0xB0); … … 97 97 const char *endptr; 98 98 const char *uuid_in_text = "7b1abd05-456f-4661-ab62-917685069343hello world!"; 99 99 100 100 ret = uuid_parse(uuid_in_text, &uuid, &endptr); 101 101 102 102 PCUT_ASSERT_ERRNO_VAL(EOK, ret); 103 103 PCUT_ASSERT_TRUE(uuid_valid(uuid));
Note:
See TracChangeset
for help on using the changeset viewer.