1 2 3 4 5 6 7 8 9 10 11
/* * clear.c -- Clear a UUID */ #include "uuidP.h" void uuid_clear(uuid_t uu) { memset(uu, 0, 16); }