| Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * clear.c -- Clear a UUID |
| Theodore Ts'o | 19c78dc | 1997-04-29 16:17:09 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 1996, 1997 Theodore Ts'o. |
| 5 | * |
| 6 | * %Begin-Header% |
| Theodore Ts'o | 3030daa | 2000-04-07 20:06:04 +0000 | [diff] [blame] | 7 | * This file may be redistributed under the terms of the GNU |
| 8 | * Library General Public License. |
| Theodore Ts'o | 19c78dc | 1997-04-29 16:17:09 +0000 | [diff] [blame] | 9 | * %End-Header% |
| Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
| Theodore Ts'o | 19c78dc | 1997-04-29 16:17:09 +0000 | [diff] [blame] | 12 | #include "string.h" |
| 13 | |
| Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 14 | #include "uuidP.h" |
| 15 | |
| 16 | void uuid_clear(uuid_t uu) |
| 17 | { |
| 18 | memset(uu, 0, 16); |
| 19 | } |
| 20 | |