summaryrefslogtreecommitdiff
path: root/capplets/file-types/libuuid/clear.c
blob: 32e26d4fb2ee72c663f042acdaa1d50d481b4fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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 Public
 * License.
 * %End-Header%
 */

#include "string.h"

#include "uuidP.h"

void uuid_clear(uuid_t uu)
{
	memset(uu, 0, 16);
}