Updated PCI IDs to latest snapshot.
[tangerine.git] / workbench / libs / uuid / uuid_copy.c
blobad1bdbbc1acdffc5348736d9ebe962888c5c584b
1 /*
2 Copyright © 2007-2008, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #define DEBUG 1
8 #include <aros/symbolsets.h>
9 #include <aros/debug.h>
10 #include <aros/libcall.h>
11 #include <proto/exec.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <ctype.h>
17 #include <assert.h>
19 #include "uuid_private.h"
20 #include LC_LIBDEFS_FILE
22 /*****************************************************************************
24 NAME */
25 AROS_LH2I(void, UUID_Copy,
27 /* SYNOPSIS */
28 AROS_LHA(const uuid_t *, src, A0),
29 AROS_LHA(uuid_t *, dst, A1),
31 /* LOCATION */
32 struct uuid_base *, UUIDBase, 12, UUID)
34 /* FUNCTION
35 Copies the UUID's.
37 INPUTS
38 src - the source UUID.
39 dst - the desitation UUID.
41 RESULT
42 This function always succeeds.
44 NOTES
46 EXAMPLE
48 BUGS
50 SEE ALSO
52 INTERNALS
54 *****************************************************************************/
56 AROS_LIBFUNC_INIT
58 assert(dst);
59 assert(src);
61 *dst = *src;
63 AROS_LIBFUNC_EXIT