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
12void 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
17