]> git.saurik.com Git - apple/xnu.git/blob - osfmk/corecrypto/ccn/src/ccn_set.c
bd95a27a7e4786ed54f722a9287899ca93abe7bd
[apple/xnu.git] / osfmk / corecrypto / ccn / src / ccn_set.c
1 //
2 // ccn_set.c
3 // corecrypto
4 //
5 // Created by Fabrice Gautier on 2/17/12.
6 // Copyright (c) 2012 Apple, Inc. All rights reserved.
7 //
8
9 #include <corecrypto/ccn.h>
10
11 #if !CCN_SET_ASM
12 void ccn_set(cc_size n, cc_unit *r, const cc_unit *s)
13 {
14 CC_MEMCPY(r, s, ccn_sizeof_n(n));
15 }
16 #endif