1 //------------------------------------------------------------------------------
2 // GB_copy_user_user.c: copy a user type
3 //------------------------------------------------------------------------------
4 
5 // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
6 // SPDX-License-Identifier: Apache-2.0
7 
8 //------------------------------------------------------------------------------
9 
10 #include "GB.h"
11 
GB_copy_user_user(void * z,const void * x,size_t s)12 void GB_copy_user_user (void *z, const void *x, size_t s)
13 {
14     memcpy (z, x, s) ;
15 }
16 
17