| 440 | #define VUUIDF_PARSEFLAGS (VUUIDF_EMPTYOK | VUUIDF_CHECKSEMANTICS) |
| 441 | |
| 442 | int |
| 443 | parse_uuid(const char *str, struct uuid *uuid) |
| 444 | { |
| 445 | |
| 446 | return (validate_uuid(str, strlen(str), uuid, VUUIDF_PARSEFLAGS)); |
| 447 | } |
| 448 | |
| 449 | int |
| 450 | uuidcmp(const struct uuid *uuid1, const struct uuid *uuid2) |
nothing calls this directly
no test coverage detected