MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sbuf_printf_uuid

Function sbuf_printf_uuid

freebsd/kern/kern_uuid.c:294–301  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

292}
293
294int
295sbuf_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.

Callers

nothing calls this directly

Calls 2

snprintf_uuidFunction · 0.85
sbuf_catFunction · 0.85

Tested by

no test coverage detected