e2fsprogs/lib/uuid/copy.c

23 lines
408 B
C
Raw Normal View History

1997-04-29 18:53:37 +04:00
/*
* copy.c --- copy UUIDs
1997-04-29 20:17:09 +04:00
*
* Copyright (C) 1996, 1997 Theodore Ts'o.
*
* %Begin-Header%
* This file may be redistributed under the terms of the GNU
* Library General Public License.
1997-04-29 20:17:09 +04:00
* %End-Header%
1997-04-29 18:53:37 +04:00
*/
#include "uuidP.h"
void uuid_copy(uuid_t dst, const uuid_t src)
1997-04-29 18:53:37 +04:00
{
unsigned char *cp1;
const unsigned char *cp2;
int i;
1997-04-29 18:53:37 +04:00
for (i=0, cp1 = dst, cp2 = src; i < 16; i++)
1997-04-29 18:53:37 +04:00
*cp1++ = *cp2++;
}