| 292 | } |
| 293 | |
| 294 | int |
| 295 | sbuf_printf_uuid(struct sbuf *sb, struct uuid *uuid) |
| 296 | { |
| 297 | char buf[38]; |
| 298 | |
| 299 | snprintf_uuid(buf, sizeof(buf), uuid); |
| 300 | return (sbuf_cat(sb, buf)); |
| 301 | } |
| 302 | |
| 303 | /* |
| 304 | * Encode/Decode UUID into byte-stream. |
nothing calls this directly
no test coverage detected