Whamcloud - gitweb
Many files:
[tools/e2fsprogs.git] / lib / uuid / clear.c
1 /*
2  * clear.c -- Clear a UUID
3  * 
4  * Copyright (C) 1996, 1997 Theodore Ts'o.
5  *
6  * %Begin-Header%
7  * This file may be redistributed under the terms of the GNU 
8  * Library General Public License.
9  * %End-Header%
10  */
11
12 #include "string.h"
13
14 #include "uuidP.h"
15
16 void uuid_clear(uuid_t uu)
17 {
18         memset(uu, 0, 16);
19 }
20