You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
309 B
21 lines
309 B
15 years ago
|
/*
|
||
|
* clear.c -- Clear a UUID
|
||
|
*
|
||
|
* Copyright (C) 1996, 1997 Theodore Ts'o.
|
||
|
*
|
||
|
* %Begin-Header%
|
||
|
* This file may be redistributed under the terms of the GNU
|
||
|
* Library General Public License.
|
||
|
* %End-Header%
|
||
|
*/
|
||
|
|
||
|
#include "string.h"
|
||
|
|
||
|
#include "uuidP.h"
|
||
|
|
||
|
void uuid_clear(uuid_t uu)
|
||
|
{
|
||
|
memset(uu, 0, 16);
|
||
|
}
|
||
|
|