blob: 9cfe59aa9c0841aca27fd4b99717b1519778363f [file] [log] [blame]
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00001/*
2 * clear.c -- Clear a UUID
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00003 *
4 * Copyright (C) 1996, 1997 Theodore Ts'o.
5 *
6 * %Begin-Header%
Theodore Ts'o3030daa2000-04-07 20:06:04 +00007 * This file may be redistributed under the terms of the GNU
8 * Library General Public License.
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00009 * %End-Header%
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000010 */
11
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000012#include "string.h"
13
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000014#include "uuidP.h"
15
16void uuid_clear(uuid_t uu)
17{
18 memset(uu, 0, 16);
19}
20